/* home_custom.css - Extracted from home.blade.php */

.video-bg {
    /* Span the full grid */
    grid-area: var(--fullGrid);

    /* Re-size video to cover full screen while maintaining aspect ratio */
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;

    /* Display video below overlay */
    z-index: -1;
}

.video-bg::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    /* Span the full grid */
    grid-area: var(--fullGrid);

    /* Center Content */
    display: grid;
    justify-content: center;
    align-content: center;
    text-align: center;

    /* Semi-transparent background */
    background-color: rgba(0, 0, 0, 0.55);
}

.box-about {
    align-self: flex-end;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    border: 1px solid rgb(92, 146, 242);
    border-radius: 10px;
    margin: 0 auto 0 auto;
    transform-origin: bottom;
    padding-top: 10px;
}

.bounce-1 {
    animation-name: bounce-1;
    animation-timing-function: linear;
}

@keyframes bounce-1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

.pattern-overlay-2::before {
    content: "";
    background: url(../img/pattern/02.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.pattern-overlay-2 {
    position: relative;
    z-index: 1;
}

.border-radius-3 {
    border-radius: 5%
}

.industry_img {
    width: 100px !important;
    padding: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.industry_img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.industry-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.industry-item-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}

.industry-item-link:hover .Industry_title {
    color: #035ddc;
}

.object {
    -webkit-animation: shimmy 2s infinite;
    animation: shimmy 2s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes shimmy {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -webkit-transform: translate(20px, 50px);
        transform: translate(20px, 50px);
    }
}

@keyframes shimmy {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -webkit-transform: translate(0, 50px);
        transform: translate(0, 50px);
    }
}

.card-box {
    background-color: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 15px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 10px 15px 0 rgb(0 0 0 / 10%);
}

.work-title {
    color: #0252c4
}

/* Mobile preview styles */
.Mobile {
    background-color: #222222;
    width: 100%;
    max-width: 320px;
    min-height: 568px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
    transform: scale(1);
    margin: 0 auto;
    border: 2px solid #fff;
}

.menu-trigger,
.close-trigger {
    position: absolute;
    top: 32px;
    right: 20px;
    display: block;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 333;
}

.menu-trigger:hover .menu-trigger-bar:before,
.close-trigger:hover .menu-trigger-bar:before {
    width: 100%;
}

.menu-trigger:hover .close-trigger-bar:before,
.close-trigger:hover .close-trigger-bar:before {
    width: 100%;
}

.close-trigger {
    z-index: 5;
    top: 42px;
}

.menu-trigger-bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: white;
    margin-bottom: 6px;
    transform: rotate(-45deg);
    position: relative;
}

.menu-trigger-bar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.menu-trigger-bar.top {
    width: 50%;
}

.menu-trigger-bar.middle:before {
    left: auto;
    right: 0;
}

.menu-trigger-bar.bottom {
    width: 50%;
    margin-left: 50%;
}

.close-trigger-bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #222222;
    position: relative;
}

.close-trigger-bar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.close-trigger-bar.left {
    transform: translateX(100px) translateY(-100px) rotate(-45deg);
}

.close-trigger-bar.right {
    transform: translateX(-100px) translateY(-100px) rotate(45deg);
    top: -3px;
}

.logo {
    display: block;
    width: 150px;
    height: 150px;
    position: sticky;
    top: 40%;
    text-align: center;
    z-index: 10;
    margin: 0 auto;
}

.logo span {
    display: block;
    text-align: center;
    line-height: 62px;
    font-size: 72px;
    color: white;
}

.logo-title {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    color: #222222;
    font-size: 32px;
    line-height: 82x;
}

.logo-badge {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 6px;
    right: -6px;
    border-radius: 100%;
    background-color: #6295ca;
    font-size: 12px;
    line-height: 2;
    text-align: center;
}

.inner-container,
.menu-container {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.inner-container {
    z-index: 20;
}

.menu-container {
    display: flex;
    align-items: center;
}

.menu {
    display: block;
    width: 100%;
    padding: 25px;
}

.menu li {
    text-align: left;
    display: block;
}

.menu a {
    text-decoration: none;
    color: #222222;
    display: inline-block;
    padding: 10px 0;
    position: relative;
}

.menu a:hover:before {
    opacity: 1;
    transform: translateX(0px);
}

.menu a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 18px;
    height: 4px;
    opacity: 0;
    background-color: #222222;
    transform: translateX(100px);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.menu-bg {
    position: absolute;
    display: block;
    width: 200%;
    left: -53%;
    top: -25%;
    height: 40%;
    background-color: white;
}

.menu-bg.middle {
    top: 29%;
    left: -53%;
    transform: rotate(-45deg) scaleY(0);
}

.menu-bg.top {
    left: -34%;
    top: 0;
    transform: rotate(-45deg) translateY(-152%);
}

.menu-bg.bottom {
    top: 105%;
    transform: rotate(-45deg) translateY(25%);
    left: -20%;
}

.client>.owl-item {
    margin: 15px 10px;
}

.owl-theme .owl-controls {
    display: none;
}

.client-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #066af9;
}

.client-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-logo-wrapper img {
    max-height: 80px;
    width: auto !important;
    object-fit: contain;
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #066af9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #0550ba;
    text-decoration: underline;
}

.service-box {
    background-image: url('../img/bg/bg-security-shapes.svg');
    background-repeat: no-repeat;
    background-position: 100% 100%;
    border-bottom: 1px solid #035ddc;
    padding: 10px;
}

.service-icon>li {
    list-style-type: none;
    padding: 5px 0px;
}

.service-icon>li>img {
    width: 20px;
    margin-right: 10px;
}

.feature-box-icon {
    float: right;
}

.feature-box-icon>img {
    width: 100px;
}

.feature-box-desc {
    height: 150px;
    border-bottom: 2px solid #035ddc;
    margin-bottom: 10px;
}

.Arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -200px;
}

.chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    -webkit-animation: move-chevron 3s ease-out 1s infinite;
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    -webkit-animation: move-chevron 3s ease-out 2s infinite;
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #ffffff;
    box-shadow: 0px 0px 10px 1px #fff;
}

.chevron:before {
    left: 0;
    transform: skewY(30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }

    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }

    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }

    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }

    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}