/*=================================
    Home Page Banner
==================================*/
.vs-hero-carousel .ls-slide .ls-bg {
    width: 100%;
    height: 770px;
    object-fit: cover;
    object-position: center center;
    display: block;
}


/*----------------------------------------
    Extra Large Screens
    Max-width: 1399px
----------------------------------------*/
@media (max-width: 1399px) {
    .vs-hero-carousel .ls-slide .ls-bg {
        height: 700px;
    }
}


/*----------------------------------------
    Large Desktops & Monitors
    Max-width: 1199px
----------------------------------------*/
@media (max-width: 1199px) {
    .vs-hero-carousel .ls-slide .ls-bg {
        height: 650px;
    }
}


/*----------------------------------------
    Laptops & Small Desktops
    Max-width: 991px
----------------------------------------*/
@media (max-width: 991px) {
    .vs-hero-carousel .ls-slide .ls-bg {
        height: 580px;
    }
}


/*----------------------------------------
    Tablets Portrait
    Max-width: 767px
----------------------------------------*/
@media (max-width: 767px) {
    .vs-hero-carousel .ls-slide .ls-bg {
        height: 540px;
        object-position: center center;
    }
}


/*----------------------------------------
    Large Mobile
    Max-width: 575px
----------------------------------------*/
@media (max-width: 575px) {
    .vs-hero-carousel .ls-slide .ls-bg {
        height: 500px;
        object-position: center center;
    }
}


/*----------------------------------------
    Small Mobile
    Max-width: 375px
----------------------------------------*/
@media (max-width: 375px) {
    .vs-hero-carousel .ls-slide .ls-bg {
        height: 460px;
        object-position: center center;
    }
}
/*=================================
    Page Banner
==================================*/
.breadcumb-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 450px;
    display: flex;
    align-items: center;
}
.breadcumb-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.breadcumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.breadcumb-wrapper .container {
    position: relative;
    z-index: 2;
}
.breadcumb-wrapper .container .breadcumb-content .breadcumb-title{
    color: var(--white-color);
}
.breadcumb-wrapper .container .breadcumb-content .breadcumb-text{
    color: var(--smoke-color);
}

/*=================================
    Contact page Images
==================================*/

/*----------------------------------------
    Contact Image
----------------------------------------*/

.contact_image {
    width: 100%;
    height: 520px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}


/*----------------------------------------
    Extra Large Screens
    Max-width: 1399px
----------------------------------------*/

@media (max-width: 1399px) {
    .contact_image {
        width: 100%;
        height: 490px;
    }
}


/*----------------------------------------
    Large Desktops & Monitors
    Max-width: 1199px
----------------------------------------*/

@media (max-width: 1199px) {
    .contact_image {
        width: 100%;
        height: 450px;
    }
}


/*----------------------------------------
    Laptops & Small Desktops
    Max-width: 991px
----------------------------------------*/

@media (max-width: 991px) {
    .contact_image {
        width: 100%;
        max-width: 500px;
        height: 450px;
        margin: 0 auto 40px;
        border-radius: 25px;
    }
}


/*----------------------------------------
    Tablets Portrait
    Max-width: 767px
----------------------------------------*/

@media (max-width: 767px) {
    .contact_image {
        max-width: 100%;
        height: 400px;
        margin-bottom: 35px;
        border-radius: 22px;
    }
}


/*----------------------------------------
    Large Mobile
    Max-width: 575px
----------------------------------------*/

@media (max-width: 575px) {
    .contact_image {
        width: 100%;
        max-width: 100%;
        height: 350px;
        margin-bottom: 30px;
        border-radius: 18px;
    }
}


/*=================================
    Toast Notification System
==================================*/
.toast-container {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: calc(100% - 40px);
    pointer-events: none;
}

.toast-notification {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #28a745;
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
}

.toast-notification.toast-show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.toast-notification.toast-hide {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
}

.toast-notification.toast-success {
    border-left-color: #28a745;
}

.toast-notification.toast-success .toast-icon {
    color: #28a745;
    background: rgba(40, 167, 69, 0.12);
}

.toast-notification.toast-error {
    border-left-color: #dc3545;
}

.toast-notification.toast-error .toast-icon {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.12);
}

.toast-notification.toast-info {
    border-left-color: #490D59;
}

.toast-notification.toast-info .toast-icon {
    color: #490D59;
    background: rgba(73, 13, 89, 0.12);
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    margin-left: 4px;
}

.toast-close:hover {
    color: #333;
}