.corporate-breadcrumb-section {
    position: relative;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.corporate-breadcrumb-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.corporate-breadcrumb-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1.05);
    animation: corporateBreadcrumbZoom 12s ease-in-out infinite;
}


.corporate-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgb(0 0 0 / 38%), rgb(0 0 0 / 68%), rgb(0 0 0 / 29%));
}


.corporate-breadcrumb-container {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    margin-top: 70px;
}


.corporate-breadcrumb-title {
    margin: 22px 0 15px;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    color: #f58634;
    letter-spacing: -1px;
}



.corporate-breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 25px;
    width: max-content;
    max-width: 100%;
    margin: auto;
    border-radius: 50px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(15px);
}


.corporate-breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;

}


.corporate-breadcrumb-nav strong {
    color: #ffcc29;
    font-weight: 600;
}


.corporate-breadcrumb-nav span {
    color: #f58634;
    font-size: 16px;
}


@keyframes corporateBreadcrumbZoom {


    0% {
        transform: scale(1.05);
    }


    50% {
        transform: scale(1.12);
    }


    100% {
        transform: scale(1.05);
    }


}


@media(max-width:991px) {

    .corporate-breadcrumb-section {
        height: 380px;
    }

    .corporate-breadcrumb-title {
        font-size: 45px;
    }

}


@media(max-width:576px) {


    .corporate-breadcrumb-section {
        height: 360px;
    }


    .corporate-breadcrumb-title {
        font-size: 34px;
    }



    .corporate-breadcrumb-nav {
        padding: 10px 18px;
        gap: 8px;
    }


    .corporate-breadcrumb-nav a,
    .corporate-breadcrumb-nav strong {
        font-size: 13px;
    }


}











/*==================================================
        WEDDING PORTFOLIO SECTION
==================================================*/

.wedding-portfolio-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.wedding-portfolio-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(245, 134, 52, .08);
    top: -180px;
    right: -180px;
    filter: blur(90px);
}

.wedding-portfolio-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 134, 52, .06);
    left: -150px;
    bottom: -150px;
    filter: blur(90px);
}

.wedding-portfolio-section .container {
    position: relative;
    z-index: 2;
}

/*==================================================
                HEADING
==================================================*/

.wedding-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.wedding-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(245, 134, 52, .08);
    color: #f58634;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wedding-tag i {
    font-size: 15px;
}

.wedding-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #373435;
    margin-bottom: 20px;
    line-height: 1.2;
}

.wedding-heading h2 span {
    color: #f58634;
}

.wedding-heading p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/*==================================================
                TABS
==================================================*/

.wedding-portfolio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 55px;
}

.wedding-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.wedding-tab i {
    font-size: 18px;
    transition: .4s;
}

.wedding-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(135deg, #f58634, #ffb100);
    transition: .45s;
    z-index: -1;
}

.wedding-tab span,
.wedding-tab i {
    position: relative;
    z-index: 2;
}

.wedding-tab:hover::before,
.wedding-tab.active::before {
    width: 100%;
}

.wedding-tab:hover,
.wedding-tab.active {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(245, 134, 52, .30);
}

.wedding-tab:hover i,
.wedding-tab.active i {
    transform: rotate(8deg) scale(1.1);
}

/*==================================================
                GALLERY GRID
==================================================*/

.wedding-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

/*==================================================
            GALLERY ITEM
==================================================*/

.wedding-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #f5f5f5;
    opacity: 0;
    transform: translateY(60px) scale(.95);
    transition: transform .7s cubic-bezier(.2, .8, .2, 1),
        opacity .7s ease;
}

.wedding-gallery-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wedding-gallery-item.hide {
    display: none;
}

.wedding-gallery-item img {
    width: 100%;
    height: 270px;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

/*==================================================
            IMAGE OVERLAY
==================================================*/

.wedding-gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .05));
    opacity: 0;
    transition: .5s;
    z-index: 2;
}

.wedding-gallery-item::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 55%;
    height: 240%;
    background: rgba(255, 255, 255, .28);
    transform: rotate(25deg);
    transition: .8s;
    z-index: 3;
}

.wedding-gallery-item:hover::before {
    opacity: 1;
}

.wedding-gallery-item:hover::after {
    left: 150%;
}

.wedding-gallery-item:hover img {
    transform: scale(1.12);
}




/*==================================================
        GALLERY ANIMATION
==================================================*/

@keyframes weddingFadeUp {

    from {

        opacity: 0;

        transform: translateY(70px) scale(.92);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}

.wedding-gallery-item.show {

    animation: weddingFadeUp .75s cubic-bezier(.22, .61, .36, 1);

}



/*==================================================
        STAGGER EFFECT
==================================================*/

.wedding-gallery-item:nth-child(1) {
    animation-delay: .05s;
}

.wedding-gallery-item:nth-child(2) {
    animation-delay: .10s;
}

.wedding-gallery-item:nth-child(3) {
    animation-delay: .15s;
}

.wedding-gallery-item:nth-child(4) {
    animation-delay: .20s;
}

.wedding-gallery-item:nth-child(5) {
    animation-delay: .25s;
}

.wedding-gallery-item:nth-child(6) {
    animation-delay: .30s;
}

.wedding-gallery-item:nth-child(7) {
    animation-delay: .35s;
}

.wedding-gallery-item:nth-child(8) {
    animation-delay: .40s;
}

.wedding-gallery-item:nth-child(9) {
    animation-delay: .45s;
}

.wedding-gallery-item:nth-child(10) {
    animation-delay: .50s;
}

.wedding-gallery-item:nth-child(11) {
    animation-delay: .55s;
}

.wedding-gallery-item:nth-child(12) {
    animation-delay: .60s;
}



/*==================================================
        SCROLL REVEAL
==================================================*/

.wedding-heading,
.wedding-portfolio-tabs {

    opacity: 0;

    transform: translateY(60px);

    transition: all .8s ease;

}

.wedding-heading.active,
.wedding-portfolio-tabs.active {

    opacity: 1;

    transform: translateY(0);

}



/*==================================================
        TABLET
==================================================*/

@media (max-width:991px) {

    .wedding-portfolio-section {

        padding: 90px 0;

    }

    .wedding-heading {

        margin-bottom: 55px;

    }

    .wedding-heading h2 {

        font-size: 38px;

    }

    .wedding-heading p {

        font-size: 16px;

    }

    .wedding-gallery {

        grid-template-columns: repeat(3, 1fr);

        gap: 16px;

    }

    .wedding-gallery-item img {

        height: 260px;

    }

    .wedding-portfolio-tabs {

        gap: 12px;

    }

    .wedding-tab {

        padding: 12px 20px;

        font-size: 14px;

    }

}



/*==================================================
        MOBILE
==================================================*/

@media (max-width:767px) {

    .wedding-portfolio-section {
        padding: 60px 0;
    }

    .wedding-heading {

        margin-bottom: 45px;

    }


    .wedding-tab:hover,
    .wedding-tab.active {
        transform: translateY(0px);
    }

    .wedding-heading h2 {

        font-size: 30px;

        line-height: 1.3;

    }

    .wedding-heading p {

        font-size: 15px;

        line-height: 1.8;

    }

    .wedding-gallery {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

    }

    .wedding-gallery-item {

        border-radius: 14px;

    }

    .wedding-gallery-item img {

        height: 220px;

        border-radius: 14px;

    }

    .wedding-portfolio-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 30px;
    }

    .wedding-portfolio-tabs::-webkit-scrollbar {

        display: none;

    }

    .wedding-tab {

        flex: 0 0 auto;

        white-space: nowrap;

        padding: 12px 18px;

        font-size: 14px;

    }

}



/*==================================================
        SMALL MOBILE
==================================================*/

@media (max-width:480px) {

    .wedding-heading h2 {

        font-size: 26px;

    }

    .wedding-heading p {

        font-size: 14px;

    }

    .wedding-gallery {

        grid-template-columns: 1fr;

        gap: 10px;

    }

    .wedding-gallery-item img {
        height: 210px;
    }

    .wedding-tab {

        padding: 10px 16px;

        font-size: 13px;

    }

}




/*==================================================
            PREMIUM LIGHTBOX
==================================================*/

.wedding-lightbox {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .96);

    display: flex;

    align-items: center;

    justify-content: center;

    visibility: hidden;

    opacity: 0;

    transition: .45s ease;

    z-index: 999999;

    backdrop-filter: blur(8px);

    overflow: hidden;

}

.wedding-lightbox.active {

    visibility: visible;

    opacity: 1;

}



/*==================================================
            IMAGE
==================================================*/

.wedding-lightbox img {

    max-width: 88vw;

    max-height: 88vh;

    object-fit: contain;

    border-radius: 18px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);

    transform: scale(.85);

    transition: .45s ease;

    user-select: none;

    pointer-events: none;

}

.wedding-lightbox.active img {

    transform: scale(1);

}



/*==================================================
        CLOSE BUTTON
==================================================*/

.wedding-lightbox-close {

    position: absolute;

    top: 30px;

    right: 30px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    transition: .35s;

    border: 1px solid rgba(255, 255, 255, .15);

}

.wedding-lightbox-close:hover {

    background: #f58634;

    transform: rotate(90deg) scale(1.08);

}



/*==================================================
        PREVIOUS / NEXT
==================================================*/

.wedding-lightbox-prev,
.wedding-lightbox-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: .35s;

    font-size: 24px;

    border: 1px solid rgba(255, 255, 255, .15);

}

.wedding-lightbox-prev {

    left: 30px;

}

.wedding-lightbox-next {

    right: 30px;

}

.wedding-lightbox-prev:hover,
.wedding-lightbox-next:hover {

    background: #f58634;

    transform: translateY(-50%) scale(1.08);

}



/*==================================================
        BUTTON ICON
==================================================*/

.wedding-lightbox-prev i,
.wedding-lightbox-next i,
.wedding-lightbox-close i {

    pointer-events: none;

}



/*==================================================
        LOADING ANIMATION
==================================================*/

@keyframes weddingZoom {

    from {

        opacity: 0;

        transform: scale(.8);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}

.wedding-lightbox.active img {

    animation: weddingZoom .35s ease;

}



/*==================================================
        MOBILE
==================================================*/

@media(max-width:767px) {

    .wedding-lightbox img {

        max-width: 94vw;

        max-height: 80vh;

        border-radius: 12px;

    }

    .wedding-lightbox-prev,
    .wedding-lightbox-next {

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

    .wedding-lightbox-prev {

        left: 12px;

    }

    .wedding-lightbox-next {

        right: 12px;

    }

    .wedding-lightbox-close {

        top: 15px;

        right: 15px;

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

}



/*==================================================
        SMALL MOBILE
==================================================*/

@media(max-width:480px) {

    .wedding-lightbox-prev,
    .wedding-lightbox-next {

        width: 42px;

        height: 42px;

    }

    .wedding-lightbox-close {

        width: 42px;

        height: 42px;

    }

}