.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% 55%;
    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;
    }


}







.mice-destination-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.mice-destination-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle,
            rgba(201, 169, 97, .12),
            transparent 70%);
    pointer-events: none;
}

.mice-destination-section::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -220px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(15, 23, 42, .05),
            transparent 70%);
    pointer-events: none;
}

.mice-destination-container {
    position: relative;
    max-width: 1400px;
    margin: auto;
    padding: 0 25px;
    z-index: 2;
}


.mice-destination-heading {
    max-width: 850px;
    margin: 0 auto 0;
    text-align: center;
}


.mice-destination-heading h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #373435;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.mice-destination-heading h2 span {
    color: #f58634;
}



.mice-destination-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 50px;
}



.mice-tab-btn {
    position: relative;
    padding: 12px 34px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 60px;
    background: #ffffff;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    transition: .45s;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.mice-tab-btn::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 3px;

    background: #f58634;

    transition: .45s;
}

.mice-tab-btn:hover {

    transform: translateY(-4px);

    border-color: #f58634;

    color: #f58634;
}

.mice-tab-btn:hover::before {

    width: 100%;
}

.mice-tab-btn.active {
    background: linear-gradient(135deg, #f58634, #ffcc29);
    color: #ffffff;
    border-color: #f58634;
    box-shadow: 0 20px 40px rgba(201, 169, 97, .35);
}

.mice-tab-btn.active::before {

    width: 100%;

    background: #ffffff;
}


.mice-tab-content {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    animation: miceFade .6s ease;
}

.mice-tab-content.active {

    display: grid;
}

@keyframes miceFade {

    from {

        opacity: 0;

        transform: translateY(30px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }

}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .mice-tab-content {

        grid-template-columns: repeat(2, 1fr);
    }

    .mice-destination-heading h2 {

        font-size: 48px;
    }

}

@media(max-width:991px) {

    .mice-destination-section {
        padding: 60px 0;
    }

    .mice-destination-heading h2 {

        font-size: 42px;
    }

}

@media(max-width:768px) {

    .mice-destination-tabs {

        gap: 12px;
    }

    .mice-tab-btn {

        padding: 14px 24px;

        font-size: 15px;
    }

    .mice-tab-content {

        grid-template-columns: 1fr;
    }

    .mice-destination-heading h2 {

        font-size: 34px;
    }

}

@media(max-width:576px) {

    .mice-destination-container {

        padding: 0 18px;
    }

    .mice-destination-heading {

        margin-bottom: 50px;
    }

    .mice-destination-heading h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .mice-destination-heading p {

        font-size: 16px;
    }

    .mice-tab-btn {
        width: fit-content;
    }

}


.mice-destination-card {
    position: relative;
    display: block;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    background: #f8f8f8;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: all .5s ease;
    cursor: pointer;
}

.mice-destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, .18);
}


.mice-destination-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #f58634, transparent, #ffcc29);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .45s;
    z-index: 5;
}

.mice-destination-card:hover::before {

    opacity: 1;
}


/*==================================================
                IMAGE
==================================================*/

.mice-destination-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mice-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s ease;
}

.mice-destination-card:hover img {
    transform: scale(1.12);
}





.mice-destination-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px 20px;
    background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 43%), rgb(0 0 0 / 32%));
}




.mice-destination-card:hover .mice-destination-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
}


.mice-destination-overlay h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    gap: 10px;
}

.mice-destination-overlay h3 span {
    font-size: 22px;
    transition: .4s ease;
}

.mice-destination-card:hover h3 span {
    transform: translateX(10px);
    color: #f58634;
}

.mice-destination-card:hover h3 {
    transform: translateY(-5px);
}




.mice-destination-card::after {
    content: "";
    position: absolute;
    top: -143%;
    left: -40%;
    width: 60%;
    height: 250%;
    background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 9%), rgb(255 255 255 / 1%));
    transform: rotate(25deg);
    transition: 1s;
    pointer-events: none;
    z-index: 4;
}

.mice-destination-card:hover::after {
    left: 140%;
}




.mice-destination-heading,
.mice-destination-tabs,
.mice-destination-card {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity .9s ease, transform .9s ease;
}

.mice-destination-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .mice-destination-card {

        height: 400px;
    }

}

@media(max-width:768px) {

    .mice-destination-card {

        height: 360px;

        border-radius: 22px;
    }

    .mice-destination-overlay {

        padding: 25px;
    }

    .mice-destination-overlay h3 {

        font-size: 24px;
    }

}

@media(max-width:576px) {

    .mice-destination-card {
        height: 100%;
    }

    .mice-destination-overlay {

        padding: 20px;
    }

    .mice-destination-overlay h3 {

        font-size: 22px;
    }

    .mice-destination-overlay p {

        font-size: 15px;
    }

}











.mice-services-section {
    position: relative;
    padding: 90px 0;
    background: #f8f9fc;
    overflow: hidden;
}


.mice-services-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(201, 169, 97, .08);
    filter: blur(80px);
}

.mice-services-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .05);
    filter: blur(80px);
}

.mice-services-container {
    position: relative;
    max-width: 1400px;
    margin: auto;
    padding: 0 25px;
    z-index: 2;
}


/*==================================================
                SECTION HEADING
==================================================*/

.mice-services-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}


.mice-services-tag i {
    font-size: 15px;
}

.mice-services-heading h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: rgb(55, 52, 53);
    margin-bottom: 55px;
}

.mice-services-heading h2 span {
    color: #f58634;
}




.mice-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}



.mice-services-heading,
.mice-services-card {
    opacity: 0;
    transform: translateY(60px);
    transition: all .9s ease;
}

.mice-services-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



@media(max-width:1200px) {

    .mice-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mice-services-heading h2 {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .mice-services-section {
        padding: 60px 0;
    }

    .mice-services-heading h2 {
        font-size: 42px;
    }

}

@media(max-width:768px) {

    .mice-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mice-services-heading {
        margin-bottom: 50px;
    }

    .mice-services-heading h2 {
        font-size: 34px;
    }

    .mice-services-heading p {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .mice-services-container {
        padding: 0 18px;
    }

    .mice-services-heading h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .mice-services-tag {
        font-size: 12px;
        padding: 9px 18px;
    }

}



.mice-services-card {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: all .45s ease;
    border: 1px solid rgba(0, 0, 0, .05);
    height: 333px;
}

.mice-services-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}



.mice-services-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.mice-services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.mice-services-card:hover .mice-services-image img {
    transform: scale(1.08);
}




.mice-services-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .25),
            transparent);
    opacity: 0;
    transition: .4s;
}

.mice-services-card:hover .mice-services-image::after {
    opacity: 1;
}


.mice-services-content {
    position: relative;
    padding: 20px;
    background: #ffffff;
    transition: .4s ease;
}

.mice-services-card:hover .mice-services-content {
    transform: translateY(-4px);
}



.mice-services-content h3 {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    color: #373435;
    margin: 0;
    transition: .35s;
    text-align: center;
}





/*==================================================
            TOP RIGHT CORNER
==================================================*/

.mice-services-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background: rgba(201, 169, 97, .08);
    clip-path: circle(100% at 100% 0);
    transition: .45s;
}

.mice-services-card:hover::after {
    background: rgba(201, 169, 97, .18);
}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .mice-services-image {
        height: 230px;
    }

    .mice-services-content {
        padding: 24px;
    }

    .mice-services-content h3 {
        font-size: 22px;
    }

}

@media(max-width:768px) {

    .mice-services-image {
        height: 220px;
    }

    .mice-services-content h3 {
        font-size: 20px;
    }

}

@media(max-width:576px) {

    .mice-services-card {
        border-radius: 18px;
        height: 100%;
    }

    .mice-services-image {
        height: 200px;
    }

    .mice-services-content {
        padding: 20px;
    }

    .mice-services-content span {
        font-size: 11px;
    }

    .mice-services-content h3 {
        font-size: 18px;
    }

}












.mice-gallery-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.mice-gallery-container {
    max-width: 1400px;
    margin: auto;
}



/*==================================================
                HEADING
==================================================*/

.mice-gallery-heading {
    max-width: 850px;
    margin: 0 auto 0px;
    text-align: center;
}



.mice-gallery-heading h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #373435;
    margin-bottom: 50px;
}


.mice-gallery-heading h2 span {
    color: #f58634;
}





.mice-gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
}


.mice-tab {
    position: relative;
    padding: 16px 30px;
    background: #ffffff;
    border: 1px solid rgb(246 145 50);
    border-radius: 14px;
    color: #373435;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    overflow: hidden;
    transition: .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}






/* Background Fill */

.mice-tab::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(45deg, #f58634, #ffcc29);

    z-index: -1;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: .4s ease;

}



/* Hover */

.mice-tab:hover {

    color: #ffffff;

    transform: translateY(-6px);

    border-color: #c9a961;

    box-shadow:
        0 18px 40px rgba(201, 169, 97, .20);

}

.mice-tab:hover::before {

    width: 100%;

}

.mice-tab:hover::after {

    transform: scaleY(1);

}



.mice-tab.active {
    color: #ffffff;
    background: linear-gradient(45deg, #f58634, #ffcc29);
    border-color: #f58634;
    box-shadow: 0 20px 45px rgba(201, 169, 97, .28);
}

.mice-tab.active::before {

    width: 100%;

}

.mice-tab.active::after {

    transform: scaleY(1);

}



/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px) {

    .mice-gallery-tabs {

        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 12px;

        padding-bottom: 10px;

        scrollbar-width: none;

    }

    .mice-gallery-tabs::-webkit-scrollbar {

        display: none;

    }

    .mice-tab {

        flex: 0 0 auto;

        white-space: nowrap;

        padding: 14px 24px;

        font-size: 14px;

    }

}

/*==================================================
            TAB CONTENT
==================================================*/

.mice-tab-pane {

    display: none;

}

.mice-tab-pane.active {

    display: block;

    animation: miceFade .6s ease;

}

@keyframes miceFade {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.mice-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}



.mice-gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .45s ease, border-color .35s ease, box-shadow .35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}


.mice-gallery-grid img:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 20px 50px rgb(55 52 53 / 1%), 0 0 35px rgb(55 52 53 / 10%);
}





/*==================================================
            SCROLL ANIMATION
==================================================*/

.mice-gallery-heading,
.mice-gallery-tabs,
.mice-gallery-grid img {

    opacity: 0;

    transform: translateY(40px);

}

.mice-show {

    opacity: 1 !important;

    transform: translateY(0) !important;

    transition:
        opacity .8s ease,
        transform .8s ease;

}



/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .mice-gallery-heading h2 {

        font-size: 42px;

    }

    .mice-gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .mice-gallery-section {
        padding: 60px 0;
    }

    .mice-gallery-heading {

        margin-bottom: 30px;

    }

    .mice-gallery-heading h2 {

        font-size: 34px;

    }

    .mice-gallery-heading p {

        font-size: 16px;

    }

    .mice-gallery-tabs {

        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 12px;

        padding-bottom: 10px;

        scrollbar-width: none;

        -ms-overflow-style: none;

    }

    .mice-gallery-tabs::-webkit-scrollbar {

        display: none;

    }

    .mice-tab {

        flex: 0 0 auto;

        white-space: nowrap;

    }

    .mice-gallery-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

    }

    .mice-gallery-grid img {

        height: 240px;

    }

}

@media(max-width:576px) {

    .mice-gallery-container {

        padding: 0 16px;

    }


    .mice-tab:hover {
        transform: translateY(0px);
    }

    .mice-gallery-heading h2 {

        font-size: 28px;

    }

    .mice-gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mice-gallery-grid img {
        height: 100%;
    }

}



/*==================================================
            PREMIUM IMAGE PREVIEW
==================================================*/

.mice-preview {

    position: fixed;

    inset: 0;

    background: rgba(8, 10, 18, .96);

    backdrop-filter: blur(12px);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .4s ease;

    z-index: 999999;

}

.mice-preview.active {

    opacity: 1;

    visibility: visible;

}



/*==================================================
                IMAGE
==================================================*/

.mice-preview img {

    width: auto;

    max-width: 90%;

    max-height: 88vh;

    object-fit: contain;

    border-radius: 20px;

    box-shadow:
        0 20px 80px rgba(0, 0, 0, .45);

    animation: micePreviewZoom .35s ease;

    transition: transform .35s ease;

}

@keyframes micePreviewZoom {

    from {

        opacity: 0;

        transform: scale(.90);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}



/*==================================================
            BUTTONS
==================================================*/

.mice-close,
.mice-prev,
.mice-next {

    position: absolute;

    width: 60px;

    height: 60px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .10);

    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    transition: .35s ease;

    display: flex;

    justify-content: center;

    align-items: center;

}



/* Close */

.mice-close {

    top: 30px;

    right: 30px;

}



/* Previous */

.mice-prev {

    left: 30px;

    top: 50%;

    transform: translateY(-50%);

}



/* Next */

.mice-next {

    right: 30px;

    top: 50%;

    transform: translateY(-50%);

}



/*==================================================
            HOVER
==================================================*/

.mice-close:hover,
.mice-prev:hover,
.mice-next:hover {

    background: #d4af37;

    color: #111827;

    box-shadow:
        0 0 25px rgba(212, 175, 55, .45);

}

.mice-prev:hover {

    transform: translateY(-50%) scale(1.08);

}

.mice-next:hover {

    transform: translateY(-50%) scale(1.08);

}

.mice-close:hover {

    transform: rotate(90deg);

}



/*==================================================
        FADE ANIMATION
==================================================*/

.mice-preview.active img {

    animation: miceImageOpen .35s ease;

}

@keyframes miceImageOpen {

    from {

        opacity: 0;

        transform: scale(.92);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}



/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px) {

    .mice-preview img {

        max-width: 94%;

        max-height: 80vh;

        border-radius: 14px;

    }

    .mice-close,
    .mice-prev,
    .mice-next {

        width: 46px;

        height: 46px;

        font-size: 18px;

    }

    .mice-close {

        top: 18px;

        right: 18px;

    }

    .mice-prev {

        left: 10px;

    }

    .mice-next {

        right: 10px;

    }

}



@media(max-width:576px) {

    .mice-preview img {

        max-width: 96%;

        max-height: 75vh;

    }

    .mice-close,
    .mice-prev,
    .mice-next {

        width: 42px;

        height: 42px;

        font-size: 16px;

    }

}




.mice-gallery-grid img {

    transition:
        opacity .45s ease,
        transform .45s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.mice-gallery-grid img {

    position: relative;

}

.mice-gallery-grid img::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);

    transform: skewX(-25deg);

}

.mice-gallery-grid img:hover::before {

    animation: miceShine .8s;

}

@keyframes miceShine {

    100% {

        left: 150%;

    }

}