.blog-image {
    height: 78px;
    width: 79px;
    object-fit: cover;
}

.blog-avatar {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.alert-info {
    color: var(--bs-heading-color) !important;
    background-color: var(--sub-bg);
    border-color: var(--sub-bg);
}

.component-blog-cover {
    min-height: 260px !important;
    width: 100% !important;
    object-fit: cover;
}

.component-service-cover {
    height: 370px;
    width: 320px !important;
    object-fit: cover;
}

.blog-square {
    height: 238px !important;
    width: 236px !important;
    object-fit: cover !important;
}

.cookies-wrapper {
    position: fixed;
    right: -370px;
    bottom: 50px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999999;
}

.title-box {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.title-box i {
    font-size: 32px;
}

.title-box h3 {
    font-size: 24px;
    font-weight: 500;
}

.info {
    margin-bottom: 15px;
}

.info p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.info p a {
    color: var(--primary-color);
    text-decoration: none;
}

.info p a:hover {
    text-decoration: none;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.button {
    width: calc(100% / 2 - 10px) !important;
    padding: 8px 0 !important;
    border: none !important;
    border-radius: 4px !important;

}


.cookies-wrapper.show {
    right: 20px;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    transition: background 0.3s;
}

.language-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.show-dropdown {
    display: block;
}

.language-btn {
    font-size: 24px;
    cursor: pointer;
}

.lang_toggle .nice-select {
    background-color: transparent;
    border: none;
}

.lang_toggle .nice-select:after {
    display: none;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang_toggle .dropdown-toggle {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
}

.lang_toggle .dropdown-toggle:active {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 150px;
}

.dropdown-menu li {
    padding: 5px 0px;
    border-bottom: 1px solid #dddddd;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.custom-services-dropdown .dropdown-menu li a {
    color: #0d063e !important;
}

.custom-services-dropdown .dropdown-menu li a i {
    color: #0d063e !important;
}

.dropdown-menu li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: black;
    padding: 3px 10px;
}

/* .header__main .main-menu ul li:hover:hover a {
    color: #0d063e !important;
}
.header__main .main-menu ul li:hover:hover a i{
    color: #0d063e !important;
} */

/* .header__main .main-menu ul li:hover:hover .custom-dropdown-menu li a {
    color: #0d063e !important;
} */

.language-dropdown:hover .dropdown-menu {
    display: block;
}

.language-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.language-select option {
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
}

@media (min-width: 1200px) {
    .d-xl-flex {
        align-items: center;
        display: flex !important;
    }
}

.about-three__left-item .about-call-icon span i {
    color: #fff;
    font-size: 28px;
}

.float_footer {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: pulse 2s infinite ease-out 1s;
}

.float_footer:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: ripple 2s infinite ease-out 1s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.my-float-footer {
    margin-top: 16px;
}

.wp-msg {
    display: none;
    font-weight: bold;
    color: #fff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    position: fixed;
    left: 85px;
    width: 190px;
    bottom: 50px;
    text-transform: capitalize;
    line-height: 18px;
    font-size: 14px;
}

.float_footer:hover {
    color: #fff !important;
}

.step-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    border: 2px solid #ccc;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: default;
}

.step-circle i {
    font-size: 25px;
}

.step-circle.active {
    background-color: #3e3978;
    border-color: #3a3772;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #ccc;
    margin: 15px 10px;
}

.quote_form label {
    /* font-family: var(--quicksand); */
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: inline-block;
}

.quote_form input,
.quote_form textarea {
    width: 100%;
    background-color: var(--sub-bg);
    padding: 18px 20px;
    border-radius: 4px;
}

.br-0 {
    border-radius: 0 !important;
}

.bgp {
    background-position: bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cd-title {
    position: relative;
    height: 160px;
    line-height: 230px;
    text-align: center;
}

.cd-title h1 {
    font-size: 2.4rem;
    font-weight: 700;
}

@media only screen and (min-width: 768px) {
    .cd-title {
        line-height: 250px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-title {
        height: 200px;
        line-height: 300px;
    }

    .cd-title h1 {
        font-size: 3rem;
    }
}

.cd-intro {
    width: 90%;
    max-width: 768px;
    text-align: center;
}

.cd-intro {
    margin: 4em auto;
}

@media only screen and (min-width: 768px) {
    .cd-intro {
        margin: 5em auto;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-intro {
        margin: 6em auto;
    }
}

.cd-headline {
    font-size: 3rem;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    .cd-headline {
        font-size: 4.4rem;
        font-weight: 300;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-headline {
        font-size: 6rem;
    }
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    color: #fff;
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.typing-head .typing-text {
    color: #bdbdbd;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

/* --------------------------------

xrotate-1

-------------------------------- */
.cd-headline.rotate-1 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.rotate-1 b {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: cd-rotate-1-in 1.2s;
    -moz-animation: cd-rotate-1-in 1.2s;
    animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: cd-rotate-1-out 1.2s;
    -moz-animation: cd-rotate-1-out 1.2s;
    animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -webkit-transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(360deg);
        opacity: 1;
    }
}

@-moz-keyframes cd-rotate-1-in {
    0% {
        -moz-transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -moz-transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -moz-transform: rotateX(360deg);
        opacity: 1;
    }
}

@keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }

    35% {
        -webkit-transform: rotateX(120deg);
        -moz-transform: rotateX(120deg);
        -ms-transform: rotateX(120deg);
        -o-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(360deg);
        -moz-transform: rotateX(360deg);
        -ms-transform: rotateX(360deg);
        -o-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}

@-webkit-keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }
}

@-moz-keyframes cd-rotate-1-out {
    0% {
        -moz-transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -moz-transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -moz-transform: rotateX(180deg);
        opacity: 0;
    }
}

@keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        -moz-transform: rotateX(-40deg);
        -ms-transform: rotateX(-40deg);
        -o-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}

/* --------------------------------

xtype

-------------------------------- */
.cd-headline.type .cd-words-wrapper {
    vertical-align: top;
    overflow: hidden;
}

.cd-headline.type .cd-words-wrapper::after {
    /* vertical bar */
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.waiting::after {
    -webkit-animation: cd-pulse 1s infinite;
    -moz-animation: cd-pulse 1s infinite;
    animation: cd-pulse 1s infinite;
}

.cd-headline.type .cd-words-wrapper.selected {
    background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.selected::after {
    visibility: hidden;
}

.cd-headline.type .cd-words-wrapper.selected b {
    color: #0d0d0d;
}

.cd-headline.type b {
    visibility: hidden;
}

.cd-headline.type b.is-visible {
    visibility: visible;
}

.cd-headline.type i {
    position: absolute;
    visibility: hidden;
}

.cd-headline.type i.in {
    position: relative;
    visibility: visible;
}

@-webkit-keyframes cd-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

@-moz-keyframes cd-pulse {
    0% {
        -moz-transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    40% {
        -moz-transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

@keyframes cd-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        -moz-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
        -o-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        -moz-transform: translateY(-50%) scale(0.9);
        -ms-transform: translateY(-50%) scale(0.9);
        -o-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0);
        -moz-transform: translateY(-50%) scale(0);
        -ms-transform: translateY(-50%) scale(0);
        -o-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

/* --------------------------------

xrotate-2

-------------------------------- */
.cd-headline.rotate-2 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.rotate-2 i,
.cd-headline.rotate-2 em {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-headline.rotate-2 b {
    opacity: 0;
}

.cd-headline.rotate-2 i {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
}

.is-visible .cd-headline.rotate-2 i {
    opacity: 1;
}

.cd-headline.rotate-2 i.in {
    -webkit-animation: cd-rotate-2-in 0.4s forwards;
    -moz-animation: cd-rotate-2-in 0.4s forwards;
    animation: cd-rotate-2-in 0.4s forwards;
}

.cd-headline.rotate-2 i.out {
    -webkit-animation: cd-rotate-2-out 0.4s forwards;
    -moz-animation: cd-rotate-2-out 0.4s forwards;
    animation: cd-rotate-2-out 0.4s forwards;
}

.cd-headline.rotate-2 em {
    -webkit-transform: translateZ(20px);
    -moz-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    -o-transform: translateZ(20px);
    transform: translateZ(20px);
}

.no-csstransitions .cd-headline.rotate-2 i {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 0;
}

.no-csstransitions .cd-headline.rotate-2 i em {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.no-csstransitions .cd-headline.rotate-2 .is-visible i {
    opacity: 1;
}

@-webkit-keyframes cd-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
    }
}

@-moz-keyframes cd-rotate-2-in {
    0% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(0deg);
    }
}

@keyframes cd-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        -moz-transform: translateZ(-20px) rotateX(90deg);
        -ms-transform: translateZ(-20px) rotateX(90deg);
        -o-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        -moz-transform: translateZ(-20px) rotateX(-10deg);
        -ms-transform: translateZ(-20px) rotateX(-10deg);
        -o-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        -moz-transform: translateZ(-20px) rotateX(0deg);
        -ms-transform: translateZ(-20px) rotateX(0deg);
        -o-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg);
    }
}

@-webkit-keyframes cd-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
    }
}

@-moz-keyframes cd-rotate-2-out {
    0% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(-90deg);
    }
}

@keyframes cd-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        -moz-transform: translateZ(-20px) rotateX(0);
        -ms-transform: translateZ(-20px) rotateX(0);
        -o-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        -moz-transform: translateZ(-20px) rotateX(-100deg);
        -ms-transform: translateZ(-20px) rotateX(-100deg);
        -o-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        -moz-transform: translateZ(-20px) rotateX(-90deg);
        -ms-transform: translateZ(-20px) rotateX(-90deg);
        -o-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg);
    }
}

/* --------------------------------

xloading-bar

-------------------------------- */
.cd-headline.loading-bar span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.loading-bar .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.loading-bar .cd-words-wrapper::after {
    /* loading bar */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #0096a7;
    z-index: 2;
    -webkit-transition: width 0.3s -0.1s;
    -moz-transition: width 0.3s -0.1s;
    transition: width 0.3s -0.1s;
}

.cd-headline.loading-bar .cd-words-wrapper.is-loading::after {
    width: 100%;
    -webkit-transition: width 3s;
    -moz-transition: width 3s;
    transition: width 3s;
}

.cd-headline.loading-bar b {
    top: .2em;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.cd-headline.loading-bar b.is-visible {
    opacity: 1;
    top: 0;
}

/* --------------------------------

xslide

-------------------------------- */
.cd-headline.slide span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.slide .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.slide b {
    opacity: 0;
    top: .2em;
}

.cd-headline.slide b.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in 0.6s;
    -moz-animation: slide-in 0.6s;
    animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
    -webkit-animation: slide-out 0.6s;
    -moz-animation: slide-out 0.6s;
    animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        -moz-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -o-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
}

@-moz-keyframes slide-out {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
        -ms-transform: translateY(120%);
        -o-transform: translateY(120%);
        transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

/* --------------------------------

xclip

-------------------------------- */
.cd-headline.clip span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
    /* line */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #aebcb9;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline.clip b.is-visible {
    opacity: 1;
}

/* --------------------------------

xzoom

-------------------------------- */
.cd-headline.zoom .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.zoom b {
    opacity: 0;
}

.cd-headline.zoom b.is-visible {
    opacity: 1;
    -webkit-animation: zoom-in 0.8s;
    -moz-animation: zoom-in 0.8s;
    animation: zoom-in 0.8s;
}

.cd-headline.zoom b.is-hidden {
    -webkit-animation: zoom-out 0.8s;
    -moz-animation: zoom-out 0.8s;
    animation: zoom-out 0.8s;
}

@-webkit-keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
    }
}

@-moz-keyframes zoom-in {
    0% {
        opacity: 0;
        -moz-transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(0);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        -moz-transform: translateZ(100px);
        -ms-transform: translateZ(100px);
        -o-transform: translateZ(100px);
        transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
    }
}

@-moz-keyframes zoom-out {
    0% {
        opacity: 1;
        -moz-transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateZ(-100px);
    }
}

@keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        -moz-transform: translateZ(-100px);
        -ms-transform: translateZ(-100px);
        -o-transform: translateZ(-100px);
        transform: translateZ(-100px);
    }
}

/* --------------------------------

xrotate-3

-------------------------------- */
.cd-headline.rotate-3 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.rotate-3 b {
    opacity: 0;
}

.cd-headline.rotate-3 i {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.is-visible .cd-headline.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.cd-headline.rotate-3 i.in {
    -webkit-animation: cd-rotate-3-in 0.6s forwards;
    -moz-animation: cd-rotate-3-in 0.6s forwards;
    animation: cd-rotate-3-in 0.6s forwards;
}

.cd-headline.rotate-3 i.out {
    -webkit-animation: cd-rotate-3-out 0.6s forwards;
    -moz-animation: cd-rotate-3-out 0.6s forwards;
    animation: cd-rotate-3-out 0.6s forwards;
}

.no-csstransitions .cd-headline.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 0;
}

.no-csstransitions .cd-headline.rotate-3 .is-visible i {
    opacity: 1;
}

@-webkit-keyframes cd-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-moz-keyframes cd-rotate-3-in {
    0% {
        -moz-transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
    }
}

@keyframes cd-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes cd-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(-180deg);
    }
}

@-moz-keyframes cd-rotate-3-out {
    0% {
        -moz-transform: rotateY(0);
    }

    100% {
        -moz-transform: rotateY(-180deg);
    }
}

@keyframes cd-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
        -moz-transform: rotateY(0);
        -ms-transform: rotateY(0);
        -o-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(-180deg);
        -moz-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
        -o-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

/* --------------------------------

xscale

-------------------------------- */
.cd-headline.scale b {
    opacity: 0;
}

.cd-headline.scale i {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.is-visible .cd-headline.scale i {
    opacity: 1;
}

.cd-headline.scale i.in {
    -webkit-animation: scale-up 0.6s forwards;
    -moz-animation: scale-up 0.6s forwards;
    animation: scale-up 0.6s forwards;
}

.cd-headline.scale i.out {
    -webkit-animation: scale-down 0.6s forwards;
    -moz-animation: scale-down 0.6s forwards;
    animation: scale-down 0.6s forwards;
}

.no-csstransitions .cd-headline.scale i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
}

.no-csstransitions .cd-headline.scale .is-visible i {
    opacity: 1;
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes scale-up {
    0% {
        -moz-transform: scale(0);
        opacity: 0;
    }

    60% {
        -moz-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    60% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
}

@-moz-keyframes scale-down {
    0% {
        -moz-transform: scale(1);
        opacity: 1;
    }

    60% {
        -moz-transform: scale(0);
        opacity: 0;
    }
}

@keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    60% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}

/* --------------------------------

xpush

-------------------------------- */
.cd-headline.push b {
    opacity: 0;
}

.cd-headline.push b.is-visible {
    opacity: 1;
    -webkit-animation: push-in 0.6s;
    -moz-animation: push-in 0.6s;
    animation: push-in 0.6s;
}

.cd-headline.push b.is-hidden {
    -webkit-animation: push-out 0.6s;
    -moz-animation: push-out 0.6s;
    animation: push-out 0.6s;
}

@-webkit-keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes push-in {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(10%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        -moz-transform: translateX(10%);
        -ms-transform: translateX(10%);
        -o-transform: translateX(10%);
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }
}

@-moz-keyframes push-out {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateX(110%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(100%);
    }
}

@keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        -moz-transform: translateX(110%);
        -ms-transform: translateX(110%);
        -o-transform: translateX(110%);
        transform: translateX(110%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/* Hero Section Styles */
.hero-area {
    background-image: url("../images/p-bg.webp");
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Particles Container */
#particles-js {
    position: absolute;
    /* Make it cover the hero area without affecting layout */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    /* Ensure it's behind the content */
}

/* Hero Area Content */
.hero-content {
    position: relative;
    /* Ensure the text stays on top of the particles */
    z-index: 2;
    /* Higher than the particles container */
    color: white;
    /* Ensure the text color is readable */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    /* Center it vertically */
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Typing Head */
.typing-text {
    font-size: 2rem;
    font-weight: 400;
    color: white;
}

/* Hero Heading */
.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
}

/* Social Links */
.social-link {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    margin: 0 10px;
}

/* Mouse Scroll Animation */
.animation-mouse {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.mouse {
    border: 2px solid #fff;
    border-radius: 30px;
    height: 40px;
    width: 22px;
    position: relative;
}

.mouse .scroll {
    width: 4px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* Keyframes for the scrolling animation */
@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(8px);
    }

    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}

/* waqas csss  */
.hero-area:before {
    background-color: #09042b !important;
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 3rem !important;
}

.dark-mode .service-three-area h2 {
    color: #fff;
}

.snapScroll100 {
    height: 100vh !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.owl-carousel .owl-item {
    height: 440px;
}

.snapScroll-main {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-scroll-snap-type: mandatory;
    scroll-snap-points-x: repeat(100%);
    -ms-scroll-snap-points-x: repeat(100%);
}

.gallery-section .filters {
    position: relative;
}

.gallery-section .filters .filter-tabs {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}

.gallery-section .filters .filter-tabs .filter {
    position: relative;
    /* color: #333; */
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    padding: 0px 20px;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1em;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.gallery-section .filters .filter-tabs .filter:after {
    position: absolute;
    content: '|';
    right: -7px;
    top: 0px;
    color: #cacaca;
    font-size: 14px;
}

.gallery-section .filters .filter-tabs .filter.active,
.gallery-section .filters .filter-tabs .filter:hover {
    color: #ff9c00;
}

.softenica-main-content {
    padding: 80px 0 50px;
}

.softenica-main-section {
    float: left;
    width: 100%;
    position: relative;
}

.softenica-main-section {
    float: left;
    width: 100%;
    position: relative;
}

.softenica-portfolio-thumb {
    float: left;
    /* width: 77%; */
    text-align: center;
    background: #f7f7f7;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.layer.blayers span {
    border-color: #0cb24a !important;
}

.softenica-portfolio-thumb-list span {
    float: left;
    /* width: 100%; */
    position: relative;
    border: 4px solid #e3e3e3;
    margin: 0 0 13px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.softenica-portfolio-thumb-list span:before {
    border-left-color: #0cb24a !important;
}

.softenica-portfolio-thumb-list span:before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    margin: -8px 0 0;
    border-top: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid transparent;
    transition: all .4s ease-in-out;
}

.portfolio-layer,
.layer,
.layer img {
    float: left;
    width: 100%;
}

.softenica-banner-table {
    display: table;
    height: 100%;
    width: 100%;
}

.softenica-banner-table-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}

.portfolio-layer a {
    display: block;
    overflow: auto;
    text-align: center;
    height: 600px;
}

.portfolio-layer a img {
    display: inline-block;
    width: 100%;
}

::-webkit-scrollbar-thumb {
    background-color: #37346c;
}

::-webkit-scrollbar-thumb {
    background-color: #37346c;
}

::-webkit-scrollbar {
    width: 5px;
}

::backdrop {
    background-color: #d8d8d8;
}

::-webkit-scrollbar-track {
    background-color: #d8d8d8;
    box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.portfolio-detail-text {
    float: left;
    width: 100%;
}

.portfolio-detail-text h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.56px;
    margin-bottom: 24px;
    color: #fff;
    text-transform: capitalize;
    /* font-family: sans-serif; */
}

.portfolio-detail-text p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    color: #fff;
    /* font-family: sans-serif; */
}

.portfolio-detail-text ul {
    float: left;
    margin: 0 0 32px;
}

.softenica-portfolio-thumb-list {
    float: left;
    /* width: 162px; */
}

.softenica-sticky .simple-btn {
    background-color: #092791 !important;
    color: #fff !important;
}

.simple-btn {
    display: inline-block;
    padding: 13px 36px 14px;
    overflow: hidden;
    font-size: 14px;
    margin: 0 5px 10px;
    position: relative;
    font-weight: 600;
    letter-spacing: .6px;
    color: #fff;
    border-radius: 100px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.dark-mode .service-single__left-item p,
.dark-mode .service-single__left-item p font {
    color: #fff !important;
}

.dark-mode .service-single__left-item .accordion-body p {
    color: #fff !important;
}

.dark-mode .accordion .accordion-button.collapsed {
    background-color: #544c9f;
    color: #fff;
}

.dark-mode .accordion .accordion-button {
    background-color: #544c9f;
    color: #ffffff;
}

.ctags {
    padding: 0px 9px;
    background-color: #1d2c61;
    border-radius: 20px;
    color: #fff;
    margin: 6px 3px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/*USE CSS for Slider*/

.vehicle-detail-banner .car-slider-desc {
    max-width: 180px;
    margin: 0 auto;
}

.banner-slider .slider.slider-for {
    max-width: 80%;
    padding-right: 0;
}

.banner-slider .slider.slider-nav {
    max-width: 16%;
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    width: 100%;
    float: left;
}

.banner-slider .slider.slider-nav {
    height: 610px;
    overflow: hidden;

}

.slider-banner-image {
    height: 610px;
}

.banner-slider .slider.slider-nav {
    padding: 0;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg {
    max-width: 178px;
    height: 110px;
    margin: 0 auto;
    border: 1px solid #EBEBEB;
    overflow: hidden;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
    /* height: 100%; */
    width: 100%;
    /* object-fit: cover; */
}

.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
    border: 0;
    outline: 0;
}

.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
    border: 3px solid #196DB6;
}

.slider-nav .slick-slide.slick-current span {
    color: #196DB6;
    font-weight: bold;
}

.slider-nav .slick-slide {
    text-align: center;
}

.slider-nav .slick-slide span {
    font-size: 14px;
    display: block;
    padding: 5px 0 15px;
}

.slider-banner-image.slick-slide.slick-current.slick-active {
    height: 550px;
    overflow: auto;
}

.slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 18px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

.slick-prev {
    top: 0;
}

.slick-next {
    bottom: 0;
    background-color: #fff;
}

.slick-prev.slick-arrow {
    background-image: url(../images/black-up-arrow.png);
}

.slick-next.slick-arrow {
    background-image: url(../images/black-down-arrow.png);
}

/*End USE CSS for Slider*/

@media screen and (max-width : 991px) {

    .banner-slider .slider.slider-for,
    .banner-slider .slider.slider-nav {
        max-width: 100%;
        float: none;
    }

    .banner-slider .slider.slider-for {
        padding-right: 0;
    }

    .banner-slider .slider.slider-nav {
        height: auto;
    }

    .slider-banner-image {
        height: 500px;
    }

    .slider.slider-nav.thumb-image {
        padding: 10px 30px 0;
    }

    .slider-nav .slick-slide span {
        padding: 5px 0;
    }

    .slick-arrow {
        padding: 0;
        width: 30px;
        height: 30px;
        top: 50%;
        bottom: 0;
        -webkit-transform: translateY(-50%) rotate(-90deg);
        -moz-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
        transform: translateY(-50%) rotate(-90deg);
    }

    .slick-prev {
        left: 0;
        right: unset;
    }

    .slick-next {
        left: unset;
        right: 0;
        background-color: transparent;
    }

    .vehicle-detail-banner .car-slider-desc {
        max-width: 340px;
    }

    .bid-tag {
        padding: 10px 0 15px;
    }

    .slider.slider-nav.thumb-image {
        white-space: nowrap;
    }

    .thumbnail-image.slick-slide {
        padding: 0px 5px;
        min-width: 75px;
        display: inline-block !;
        float: none;
    }


}

.main_heading {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.2em;
    margin-bottom: 0;
    z-index: 0;
}

@media screen and (max-width : 767px) {
    .slider-banner-image {
        height: 400px;
    }

    .slider.slider-nav.thumb-image {
        padding: 0px 20px 0;
        margin: 10px 0px 0;
    }

    .slider-nav .slick-slide.thumbnail-image .thumbImg {
        max-width: 140px;
        height: 80px;
    }

    .slick-prev.slick-arrow {
        background-position: center 10px;
    }

    .slick-next.slick-arrow {
        background-position: center 10px, center;
    }

    .slider-nav .slick-slide span {
        font-size: 12px;
        white-space: normal;
    }

    /* 
    .custom-services-dropdown .custom-dropdown-menu .dropdown-item {
        padding: 0px 8px !important;
        font-size: 12px !important;
    } */

    .main-slider {
        height: 230px !important;
    }

    .thumbs {
        height: 70px !important;
    }

    .main_heading {
        font-size: 28px !important;
    }

}

@media screen and (max-width: 580px) {
    .slider-banner-image {
        height: 340px;
    }
}

@media screen and (max-width : 480px) {
    .slider-banner-image {
        height: 280px;
    }
}

.banner-slider .thumbnail-image .thumbImg img {
    justify-content: start;
    height: 96px;
    display: flex;
    object-fit: cover;
    object-position: top;
}

.banner-slider .thumbnail-image .thumbImg {
    padding: 5px;
}

/* end slider  */
.blu {
    color: #1d2c61 !important;
}

.bg-blu {
    background-color: #1d2c61 !important;
}

.client_section h3,
.client_section figcaption {
    color: #fff;
}

.client_section blockquote {
    color: #e7e4e4;
}

.client_section .chead {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.client_section p {
    color: #e7e4e4;
    margin-bottom: 5px;
}

.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    margin: -8px 0 0;
    border-top: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid transparent;
    transition: all .4s ease-in-out;
}

.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
    /* float: left; */
    /* width: 100%; */
    position: relative;
    /* border: 4px solid #e3e3e3; */
    /* margin: 0 0 13px; */
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.quote_form .nice-select.form-select {
    height: 60px !important;
}

.about-three__left-item .about-call-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
}

.about-three__left-item .about-call-icon span {
    display: flex;
    justify-content: center;
    height: 48px;
    align-items: center;
    width: 48px;
}

.banner__inner-page.bg-image {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-banner-image.slick-slide {
    height: 550px;
    overflow: auto;
}

/* Ensure dropdown menu is hidden by default */
/* .custom-services-dropdown .custom-dropdown-menu {
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    display: none !important;
} */

/* Show dropdown when hovering */
/* .custom-services-dropdown:hover .custom-dropdown-menu { */
/* display: block !important; */
/* height: 300px; */
/* overflow: auto; */
/* border-bottom: 4px solid #342f63; */
/* border-radius: 0px 0px 15px 15px; */
/* box-shadow: 0px 10px 8px rgb(0 0 0 / 40%); */
/* } */

/* Style dropdown items */
/* .custom-services-dropdown .custom-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    font-size: 15px;
    white-space: nowrap;
    transition: background 0.3s ease-in-out;
} */

/* Style icons */
/* .custom-services-dropdown .custom-dropdown-menu .dropdown-item i {
    margin-right: 10px;
    color: #007bff;
} */

/* second btn  */
/* Button Styling */
.feedback-btn {
    position: fixed;
    top: 50%;
    right: -160px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background-color: #2a50b7;
    color: white;
    /* border-radius: 30px 0 0 30px; */
    /* padding: 10px; */
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: right 0.8s ease-in-out, width 0.3s ease-in-out;
    width: 160px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* Icon Styling */
.feedback-btn i {
    padding: 10px;
    font-size: 22px;
    background: #1d2b60;
    color: #ffffff;
    /* border-radius: 50%; */
    padding: 10px;
    margin-right: 10px;
    transition: margin-right 0.3s ease-in-out;
}

/* Hide text initially */
.feedback-btn span {
    opacity: 1;
    color: #fff;
    transition: opacity 0.3s ease-in-out;
}

/* Slide in after page load */
.feedback-btn.show {
    right: 0;
}

/* Shrink to icon-only mode */
.feedback-btn.compact {
    width: 42px;
}

.feedback-btn.compact span {
    opacity: 0;
}

.feedback-btn.compact i {
    margin-right: 0;
}

/* Expand on Hover */
.feedback-btn:hover {
    width: 160px;
}

.feedback-btn:hover span {
    opacity: 1;
}

.feedback-btn:hover i {
    margin-right: 10px;
}

/* end button  */
.dark-mode .home_faqs .accordion .accordion-item .accordion-body p {
    color: #fff;
}

.dark-mode .accordion-item {
    background-color: #544c9f;
}

.dark-mode .accordion .accordion-button.collapsed::before {
    content: "+";
    background-color: #fff;
    color: #544c9f;
}

.dark-mode .accordion .accordion-button::before {
    color: #544c9f;
    background-color: #ffffff;
}

/* taems starts */

.cardhover {
    background-color: #ddd;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;

}

.cardhover:hover {
    -webkit-box-shadow: -20px -21px 13px 0 rgb(0 0 0 / 10%);
    box-shadow: -20px -21px 13px 0 rgb(0 0 0 / 10%);
    top: 10px;
    left: 10px;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    color: #fff;
}

.page-title .title_divider {
    display: inline-block;
    width: 30px;
    height: 3px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    background: #cbcfd4;
    top: 121px;
}

.page-breadcrumb li:after {
    position: absolute;
    top: 0;
    right: -7px;
    content: '\f212';
    /* font-family: 'flaticon'; */
    display: inline-block;
    font-size: 8px;
    color: #fff;
}

.page-breadcrumb li a {
    color: rgb(255 255 255);


}

.page-breadcrumb li {

    color: rgb(255 255 255);

}

.page-breadcrumb {

    margin: 128px -15px 10px;
}

.case-block .lower-content .text {
    text-align: justify;

}

.main-menu .navigation>li .mega-menu-bar .column>ul>li {

    border-bottom: none;
}

.main-slider h2 {
    font-size: 50px;
    line-height: 1.2em;
    color: rgb(236, 242, 245);
    font-weight: 800;
}

.main-menu .navigation>li .mega-menu-bar h3 {

    font-size: 15px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 9px;
}

.main-menu .navigation>li .mega-menu-bar .column>ul>li>a {

    font-weight: 500;
    font-size: 12px;
    line-height: 0px;
    color: #000000;

}

.case-block .image-box .image img {
    display: block;
    width: 100%;
    height: 300px;
}

.quote-style-one p {
    color: #f8f9fa;
}

.quote-style-one .author {
    color: #f8f9fa;
}

.quote-style-one .author:before {
    background: #f8f9fa;
}

.fun-fact-section .quot-column .divider {
    border-right: 1px solid #f8f9fa;
}

.services {
    text-align: center;
    margin-bottom: 51px;
    color: #000000;
}


.text1 {
    color: #000000;
}

.offer {
    color: #4C4C4D;
}

.key {

    text-align: center;
}

.sec-title .text1:before {
    position: absolute;
    width: 30px;
    height: 3px;
    top: -2px;
    left: 556px;
    content: "";
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #3B7EFF;
}

.test {
    color: "#4C4C4D";
}

.news-block .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
}

.news-section {
    padding: 0px 0 84px;
}

.main-header .main-box {
    background-color: white;
}

.main-menu .navigation>li>a>span {
    color: black;
}

.main-menu .navigation>li>a {
    color: #000000;
}

.main-header .service_wrapper .q {
    color: #000000;
}

/* .fa-search:before {
    color: black;
} */

.flaticon-whatsapp:before {
    color: #2f3188e3;
}

.main-menu .navigation>li>a:before {
    background: #2f3188e3;
}


.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap :last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap :last-child {
    margin-bottom: 0;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

.entry-content .rev_slider a,
.rev_slider a {
    box-shadow: none;
}

.sec-title .text2:before {
    top: -35px;
}

.justify {
    text-align: justify;
}

.icon-height {
    margin-right: 40px;
    height: 54px;
}

/* .header__main .main-menu ul li:hover:hover .custom-dropdown-menu li:hover {
    background-color: #544c9f;
}

.header__main .main-menu ul li:hover:hover .custom-dropdown-menu li:hover a {
    color: #ffffff !important;
    background-color: #544c9f;
} */

.user_sidebar {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.user_sidebar .sidebar_menu {
    padding-left: 10px;
}

.user_sidebar .sidebar_menu ul li {
    padding: 8px 15px;
}

.user_sidebar .sidebar_menu ul li:hover {
    background: #19306b;
    border-radius: 5px;
}

.user_sidebar .sidebar_menu ul li a {
    color: #fff;
}

.user_sidebar .hire-btn {
    background-color: #19306b;
    border-color: #19306b;
    border: none;
    margin-top: 15px;
    margin-left: 10px;
    color: #ffffff;
}

.user_sidebar .about-three__left-item .about-call-icon span {
    background: #19306b;
}

.user_sidebar .about-three__left-item .about-call-icon {
    border: 1px solid #19306b;
}

.user_sidebar .sidebar_info li i {
    color: #fff !important;
    padding-right: 10px;
}

.user_sidebar .sidebar_info li a {
    color: #fff !important;
}

.user_sidebar .side_icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--primary-color);
    margin-right: 10px;
}

.user_sidebar .side_icons a i {
    color: #fff;
}

.dropdown .flag_img {
    height: 20px;
    width: 30px;
    /* border-radius: 50%; */
}

.banner-two__content h2,
.banner-three__content h2 {
    font-size: 48px !important;
}

.howwework-sec {
    margin: 60px 0px 60px;
    padding: 0px;
    position: relative;
    z-index: 1;
}

.processleft {
    position: sticky;
    top: 1px;
}

.howwework-sec h3,
.howwework-sec p {
    text-align: left;
}

.howwework-sec h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.howwework-sec p {
    font-size: 16px;
}

.processright {
    max-height: 331px;
    overflow-y: scroll;
}

.howwework-sec ul {
    list-style-type: disc;
}

.howwework-sec ul {
    position: relative;
    list-style-type: none;
    padding-left: 10px;
    margin-top: 0px;
}

.howwework-sec ul li {
    width: 100%;
    padding: 0px 10px 30px;
    position: relative;
    margin-right: 20px;
    transition: 0.3s;
    display: flex;
    flex-wrap: wrap;
}

.howwework-sec .img-homesec {
    display: inline-block;
    position: relative;
    z-index: 10;
    width: 72px;
}

.processright-sec {
    padding-left: 25px;
    width: 86%;
}

.howwework-sec h4 {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0 20px;
}

.howwework-sec ul li p {
    padding: 0px 0px;
    font-size: 16px;
    text-align: left;
    /* font-family: 'Inter', sans-serif !important; */
}

.howwework-sec.process-sec .processright .img-homesec img {
    background: #544c9f;
    padding: 17px;
    border-radius: 10px;
    width: auto;
    height: auto;
    z-index: 1;
    position: relative;
    width: 72px;
}

.howwework-sec ul::after {
    top: 25px;
}

.howwework-sec ul::after {
    border: 1px dashed #000;
    content: "";
    position: absolute;
    top: 53px;
    width: 1px;
    left: 58px;
    z-index: 0;
    height: 82%;
}

.custom-switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #73C0FC;
    transition: .4s;
    border-radius: 30px;
}

.custom-slider:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 20px;
    left: 2px;
    bottom: 2px;
    z-index: 2;
    background-color: #e8e8e8;
    transition: .4s;
}

.custom-sun svg {
    position: absolute;
    top: 6px;
    left: 36px;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.custom-moon svg {
    fill: #73C0FC;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.custom-sun svg {
    animation: rotate 15s linear infinite;
}

.user_sidebar .btn-close {
    background: none !important;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #19306b !important;
    color: #fff;
    padding: 5px 10px;
    width: 29px;
    height: 20px;
    margin-right: 5px;
    position: absolute;
    top: 15px;
    right: 10px;
}

.offcanvas,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm,
.offcanvas-xl,
.offcanvas-xxl {
    --bs-offcanvas-zindex: 9999;
}

.offcanvas-header {
    display: block;
}

@keyframes rotate {

    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.custom-moon svg {
    animation: tilt 5s linear infinite;
}

@keyframes tilt {

    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.custom-input:checked+.custom-slider {
    background-color: #183153;
}

.custom-input:focus+.custom-slider {
    box-shadow: 0 0 1px #183153;
}

.custom-input:checked+.custom-slider:before {
    transform: translateX(30px);
}

/* for_mobile */
@media screen and (max-width: 767px) {
    .howwework-sec h3 {
        font-size: 20px;
    }

    .howwework-sec ul li {
        flex-wrap: nowrap;
    }

    .custom-services-dropdown:hover .custom-dropdown-menu {
        height: 160px;
        display: none !important;
        overflow: auto;
        z-index: 9;
        position: relative;
    }

    .contact__left-item ul li h3 {
        font-size: 14px !important;
    }

    .banner-two__content h2 {
        font-size: 28px !important;
        line-height: 38px;
    }

    .dropdown-toggle::after {
        display: none !important;
    }

    .hero-loading-content h1 {
        font-size: 25px !important;
    }

    .close-btn {
        position: absolute;
        top: 0px;
        right: 0px !important;
        cursor: pointer;
        font-size: 30px !important;
        color: #fff;
        font-weight: bold;
        background: #04e4ff;
        padding: 5px 10px 10px 9px !important;
    }

    .vertical-slider {
        flex-direction: column-reverse !important;
    }

    .vertical-slider .thumbnails {
        width: 100% !important;
        background-color: #29254e3d !important;
        margin-top: 0 !important;
        padding: 20px 30px !important;
        height: 100px !important;
        display: flex !important;
    }

    .vertical-slider .main-image {
        width: 100% !important;
        height: 400px !important;
        padding-top: 30px;
    }

    .vertical-slider .thumbnails img {
        height: 60px !important;
    }

    .portfolio-detail-text {
        padding: 0px 10px !important;
    }

    .content_div {
        margin-top: 0 !important;
    }

    .portfolio-detail-text p {
        font-size: 14px;
        line-height: 21px;
    }

    .content_div {
        padding-top: 15px;
        margin-top: 100px;
        background: #29254e;
        height: 480px !important;
    }

    .snapScroll100 {
        height: 60vh !important;
    }

    .typing-head .typing-text {
        color: #bdbdbd;
        font-size: 13px !important;
        font-weight: 500 !important;
    }

    .section-header .sub_titles {
        font-size: 13px !important;
    }

    .vertical-slider .thumbnails img {
        margin: 0px 3px !important;
    }
}

/* endmobile */
.services-item-wrap .row {
    --bs-gutter-x: 24px;
}

.services-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all .3sease-out 0s;
}

.services-thumb {
    border-radius: 10px 10px 0 100px;
    overflow: hidden;
    position: relative;
}

.shine-animate {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.shine-animate:before {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .3));
    content: "";
    display: block;
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
}

.services-thumb img {
    height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.services-content .icon {
    align-items: center;
    background: #ecf6fa;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #544c9f;
    display: flex;
    font-size: 36px;
    height: 70px;
    justify-content: center;
    left: 30px;
    line-height: 0;
    position: absolute;
    top: -55px;
    transition: all .4sease-out 0s;
    width: 70px;
    z-index: 2;
}

.shortcode-services .services-icon img,
.shortcode-services .services-icon svg.icon {
    border: unset;
    height: 36px;
    position: unset;
    width: 36px;
}

.services-content .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.truncate-1-custom,
.truncate-2-custom {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.services-content p {
    margin-bottom: 22px;
}

.truncate-2-custom {
    -webkit-line-clamp: 2;
}

.truncate-1-custom,
.truncate-2-custom {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.services-content .btn {
    background: #ecf6fa;
    color: #544c9f;
    padding: 16px 20px;
}

.services-item:hover {
    box-shadow: 0 4px 30px 0 #cfdee4;
}

.services-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all .3sease-out 0s;
}

.services-item:hover .services-content .icon {
    background: #544c9f;
    color: #fff;
}

.services-content {
    padding: 30px;
    position: relative;
}

.shine-animate-item:hover .shine-animate:before {
    animation: hoverShine 1.2s;
}

@keyframes hoverShine {
    to {
        left: 125%
    }
}

.shortcode-services .services-item:hover .services-icon img,
.shortcode-services .services-item:hover .services-icon svg.icon {
    /* transform: rotateY(180deg); */
    transition: all .4sease-out 0s;
}

.services-content .btn:hover,
.services__content-two .title {
    color: #fff;
}

.btn:focus-visible:before,
.btn:hover:before {
    top: -40%;
}

.dark-mode .contact__left-item .social a {
    color: #0d063e;
}

/* .dark-mode .contact__form form input,
.dark-mode .contact__form form textarea {
    color: #fff;
} */

.contact__left-item ul li h3 {
    font-size: 19px;
}

.contact__left-item ul li {
    flex-wrap: nowrap;
}

.choose__image img {
    height: 100%;
    object-fit: cover;
}

.testimonial-two-area {
    display: none;
}

/* .swiper-slide:not(.swiper-slide-active) {
    display: none;
} */
.banner__slider .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.banner__slider .swiper-slide.swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.dark-mode .portfolio-detail-text h2 {
    color: #fff;
}

.cookies-wrapper .info p {
    color: #585858;
}

.quote-area .quote__wrp .quote_heading {
    font-size: 30px;
    line-height: 38px;
}

.dark-mode .quote_form input,
.dark-mode .quote_form textarea {
    color: #fff;
}

.dark-mode .nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #151327;
}

.dark-mode .nice-select .list {
    background-color: #231f45;
}

.dark-mode .nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
    color: #151327;
}

.dark-mode .thank-you-title {
    color: #fff;
}

.dark-mode .thank-you-message {
    color: #fff;
}

.dark-mode .animation-container .checkmark__circle {
    stroke: #ffffff;
}

.dark-mode .animation-container .checkmark__check {
    stroke: #ffffff;
}

.dark-mode .btn-primary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.dark-mode .btn-primary:hover {
    background-color: #dddde0;
    color: #031952;
    border-color: #fff;
    transform: translateY(-2px);
}

.sidebar-area .btn-one {
    min-height: 31px;
}

.sidebar-area .mobile_ld button {
    background-color: transparent;
}

.sidebar-area .mobile_ld button:hover {
    transform: none;
}

.sidebar-area .mobile_ld .dropdown-menu {
    width: 150px;
    top: 80px;
    right: 0;
    z-index: 9999999;
}

/* .tagline_text::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 22px 6px;
    background: rgb(0 0 0 / 50%);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-right-width: 4px;
    border-color: rgba(0, 0, 0, .4);
    box-shadow: rgba(62, 63, 65, .35) 0 2px 6px;
    transform: skew(30deg)
} */
.banner-two__content .main__box {
    padding: 20px;
    background: #2122647a;
    border-radius: 0px 80px 0px 80px;
}

.sidebar-area .mobile_ld img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

/* .mobile-menu li a{
    color: #fff;
    border-top: 1px solid #3b4257;
    width: 100%;
    padding: 10px 0;
 } */
@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.875rem;
    }

    p {
        font-size: 1rem;
    }
}

.hidden {
    display: none;
}

/* 
.custom-dropdown-menu {
    width: 100vw !important;
    left: 0 !important;
    top: 100% !important;
    position: absolute !important;
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.custom-dropdown-menu .dropdown-header {
    text-transform: uppercase;
    font-size: 16px;
    padding-left: 0px;
    font-weight: bold;
    color: #0d063e;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d063e;
    margin-bottom: 10px;
} */

/* .custom-dropdown-menu a {
    display: block;
    padding: 8px 10px;
    color: #0d063e !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.custom-dropdown-menu a i {
    margin-right: 8px;
    color: #0d063e;
}

.custom-dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
} */

.header__main .main-menu ul li {
    position: inherit;
}

/* .custom-dropdown-menu .dropdown-header i {
    color: #0d063e !important;
}

.custom-dropdown-menu a.dropdown-item {
    color: #0d063e !important;
} */

/* .header__main .main-menu ul .main_li:hover a {
    color: #ffffff !important;
} */
/* .header__main .main-menu ul .main_li:hover:hover .custom-dropdown-menu li a {
    color: #0d063e !important;
}

.custom-services-dropdown .custom-dropdown-menu .dropdown-item i {
    color: #0d063e !important;
} */

/* portfolio  */
.case__slider {
    margin-left: 0px !important;
}

/* Portfolio Cards */
.portfolio-card {
    position: relative;
    /* height: 500px; */
    /* Adjust as needed */
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.card-bg {
    /* opacity: 0.6; */
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    transition: transform 0.3s ease;
}

.hover-text {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    height: 110px;
    width: 110px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(0 0 0 / 64%);
    color: white;
    padding: 10px 20px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-card:hover .hover-text {
    opacity: 1;
}

.portfolio-card:hover .card-bg {
    /* transform: scale(1.1); */
}

/* Appended Details Section */
#project-details {
    display: none;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    margin-top: 0;
    /* Remove margin to avoid extra spacing */
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 5px solid #04e4ff;
    position: fixed;
    /* Fix it to the viewport */
    top: 0;
    left: 0;
    z-index: 9999;
    /* Ensure it appears above everything */
    background-position: center;
    backdrop-filter: blur(6px);
    background-size: cover;
    background-repeat: no-repeat;
    overflow-y: auto;
    overflow-x: hidden;
    /* Enable scrolling if content exceeds viewport */
}

#project-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #342f64;
    background-size: inherit;
    background-position: inherit;
    opacity: 0.6;
    z-index: -1;
}


.close-btn {
    position: absolute;
    top: 0px;
    right: 175px;
    cursor: pointer;
    font-size: 58px;
    color: #fff;
    font-weight: bold;
    background: #04e4ff;
    padding: 16px 20px 29px 20px;
}

/* Vertical Slider */
.vertical-slider {
    display: flex;
    padding-right: 0px;
    padding-left: 0px;
}

.vertical-slider .thumbnails {
    width: 20%;
    background-color: #fff;
    margin-top: 100px;
    padding: 30px;
    height: 590px;
}

.vertical-slider .thumbnails img {
    height: 80px;
    object-fit: cover;
    vertical-align: top;
    width: 100%;
    cursor: pointer;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: border 0.2s ease;
    padding: 3px;
    border: 2px solid #fff;
    /* margin: 0px 3px; */
}

.vertical-slider .thumbnails img:hover {
    border: 2px solid #000;
}

.vertical-slider .main-image {
    background-color: #efefef;
    width: 80%;
    overflow-y: scroll;
    height: 95vh;
    padding-left: 0px;
    padding-right: 0px;
}

.vertical-slider .main-image img {
    width: 100%;
}

/* Add active state styling */
.vertical-slider .thumbnails img.active {
    border: 2px solid #04e4ff;
    /* border-bottom: 5px solid #04e4ff; */
    /* opacity: 0.7; */
}

.content_div {
    padding-top: 15px;
    margin-top: 100px;
    background: #29254e;
    height: 590px;
    position: relative;
}

.card_logo_img {
    position: absolute;
    left: 40px;
    bottom: 30px;
}

#port_slider {
    background-color: #342e62 !important;
}

.c-btn {
    color: #04e4ff !important;
}

.px-2.btn-action:hover {
    background-color: transparent !important;
}

.card_logo_top {
    margin-top: -130px;
}

/* Scroll animation */
@keyframes scrollDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.scroll-down {
    animation: scrollDown 0.5s ease-out;
}

.just_mobile {
    color: #fff;
    border-top: 1px solid #3b4257;
    width: 100%;
    padding: 10px 0px;
}

.full-width-details {
    width: 100vw;
    /* Full viewport width */
    position: relative;
    left: 50%;
    /* Move to the center */
    margin-left: -50vw;
    /* Adjust to align with the viewport */
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margin */
}

@media (min-width: 768px) {
    .px-md-8 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }

    .mx-md-8 {
        margin-right: 8rem !important;
        margin-left: 8rem !important;
    }
}

.bot_buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    border-top: 2px solid #f3f3f33b;
}

.bot_buttons .btn-action {
    font-size: 14px;

}

.card-bg img {
    width: 100%;
    height: auto;
    display: block;
}

/* Disable scrolling when project details are open */
body.no-scroll {
    overflow: hidden;
}

.nice-select.open .list {
    height: 200px;
    overflow-y: auto;
}

.p-20 {
    padding: 20px !important;
}

.form-select:focus {
    box-shadow: none !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px !important;
    padding-top: 10px;
}

.select2-container .select2-selection--single {
    height: 53px !important;
    border: 1px solid #e0e0e0 !important;
}

.select2-container .selection {
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 53px !important;
    right: 10px !important;
}

.component-blog-cover {
    height: 260px !important;
    max-height: 260px !important;
}

.sorting_cards {
    height: 170px;
    width: 200px;
    margin: 10px 10px;
    background-color: transparent !important;
}

.sorting_cards.active {
    /* background-color: #fff !important; */
    background: linear-gradient(90deg, #847ffe, #b23ff1);
}

.sorting_cards .top_icon {
    padding-top: 20px;
    font-size: 30px;
    padding-bottom: 15px;
    color: #fff;
}

/* .sorting_cards.active .top_icon{
    color: #342e62;
} */
.sorting_cards h6 {
    font-size: 25px;
    padding-bottom: 10px;
    color: #fff;
}

/* .sorting_cards.active h6{
    color: #342e62;
} */
.sorting_cards .act_icon i {
    font-size: 30px;
    color: #fff;
}

/* .sorting_cards.active .act_icon i{
    color: #342e62;
} */



.dark-mode .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
    color: #000;
}

.iti {
    width: 100%;
}

.dark-mode .select2-dropdown {
    background-color: #fff;
    color: #000;
}

.contact__form form label {
    color: #0f0d1d;
    margin-bottom: 5px;
    font-weight: 700;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3b356f;
    color: white;
}

@media (max-width: 768px) {

    /* Mobile View */
    .bottom-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #242045;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 5px 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 99999;
        padding-top: 0;
        padding-bottom: 0;
    }

    .bottom-menu a {
        flex: 1;
        text-align: center;
        padding: 8px 0;
    }

    .bottom-menu .sorting_cards {
        margin: 0;
        border-radius: 0;
        padding: 5px;
        /* Reduce padding */
        font-size: 12px;
        /* Reduce text size */
        box-shadow: none;
        border: none;
        height: auto;
        width: 100%;
    }

    .bottom-menu .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
    }

    .bottom-menu i.top_icon {
        font-size: 16px;
        /* Smaller icons */
        margin-bottom: 0px;
        padding-top: 0;
    }

    .bottom-menu h6 {
        font-size: 10px;
        margin: 0;
        font-weight: 500;
        padding-bottom: 0;
    }

    .bottom-menu .sorting_cards.active h6,
    .bottom-menu .sorting_cards.active i.top_icon {
        color: #04e4ff;
        border-radius: 5px;
    }

    .bottom-menu .sorting_cards.active {
        background: transparent !important;
    }

    .hover-text {
        opacity: 1;
    }

    .hover-text {
        font-size: 10px;
        line-height: 17px;
        height: 70px;
        width: 70px;
    }
}

.lang____btn {
    top: -35px;
    right: -35px;
}

.get_service_btn {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #6F42C1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
}

.icon_get_service {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.get_service_btn:hover {
    /* transform: scale(1.05); */
    border-color: #fff9;
    color: #fff;
}

.get_service_btn:hover .icon_get_service {
    transform: translate(4px);
}

.get_service_btn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.get_service_btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.quick_contact_wa {
    position: relative;
    transition: all 0.3s ease-in-out;
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    color: #25d366;
    border: 2px solid #25d366;
    background-color: transparent;

    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.quick_contact_wa i {
    font-size: 18px;
    transition: transform 0.3s ease-in-out;
}

.quick_contact_wa:hover {
    background-color: #25d366;
    color: #fff;
    /* transform: scale(1.05); */
}

.quick_contact_wa::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.7;
}

.quick_contact_wa:hover::before {
    animation: shine 1.5s ease-out;
}

@media only screen and (max-width: 767px) {


    .dual_buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.service-tags-widget {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
}

.service-tags-widget .sidebar__widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #24456e;
    /* brand color */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #24456e;
    border: 1px solid #24456e;
    border-radius: 50px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    background: #fff;
    text-decoration: none;
}

.service-tag:hover {
    background: #24456e;
    color: #fff;
    box-shadow: 0px 6px 15px rgba(36, 69, 110, 0.2);
}

.price-widget {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sidebar__widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #24456e;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #888;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: #24456e;
}

.discount-badge {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background: #f8951e;
    padding: 3px 8px;
    border-radius: 6px;
}

.sidebar__widget {
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 26px 30px 30px;
}

.sidebar__widget-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}

.sidebar__widget-title:before {
    background: #6F42C1;
    border-radius: 4px;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 30px;
}

.sidebar__brochure p {
    margin-bottom: 15px;
}

.sidebar__brochure a {
    align-items: center;
    background: #544c9f;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
    margin-bottom: 10px;
    padding: 15px 20px;
}

.sidebar__widget-two {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.sidebar__contact .title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 40px;
}

.sidebar__contact .btn {
    gap: 5px;
    padding: 13px 24px;
    background-color: #fff;
    width: 100%;
    transition: all .3s ease-out 0s;
}

.sidebar__contact {
    background: #544c9f;
    border-radius: 10px;
    padding: 50px 40px 55px;
    text-align: center;
}

.main-slider {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnails */
.thumbs {
    height: 90px;
    box-sizing: border-box;
}

.thumbs .swiper-slide {
    height: 100%;
    opacity: 0.5;
    transition: 0.3s;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbs .swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-categories li {
    margin-bottom: 10px;
}

.service-categories li div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #24456e;
    transition: all 0.3s ease;
}

.price_div {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    color: #29254d;
    font-size: 20px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 0 0 0 10px;

}

.janhome-industiserve {
    padding: 50px 0;
    background-image: url(/wp-content/uploads/2023/12/circle-bg.png);
    background-repeat: no-repeat;
    background-position: left top;
    overflow: hidden;
}

.industry-pointer-slider {
    border: 1px solid #b1b1b1;
    padding: 40px 20px;
    border-radius: 14px;
}

.industry-pointer-slider .pointer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.industry-pointer-slider .pointer-container .ind_leftTxtdiv {
    font-size: 20px;
    font-weight: 500;
    border: 1px solid #c7c7c7;
    padding: 15px;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
}


.industry-pointer-slider .pointer-container .ind_leftTxtdiv.active {
    border-color: #6F42C1;
}

.pointer-content {
    cursor: pointer;
}

.pointer-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    height: 310px;
}

.industry-pointer-slider .ind_rightTxtdiv.active {
    opacity: 1;
}

.industry-pointer-slider .ind_rightTxtdiv {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    border-radius: 12px;
    padding: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.industry-pointer-slider .inner-rightTxtdiv {
    background: #000000a6;
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.industry-pointer-slider .inner-rightTxtdiv p {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
}

.janhome-industiserve p {
    font-family: satoshi, sans-serif;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

.industry-pointer-slider .inner-rightTxtdiv a {
    color: #905af1;
    text-decoration: underline;
    display: block;
    margin: 10px 0;
    font-weight: 500;
    font-size: 18px;
}

.janhome-industiserve h3 {
    font-size: 44px;
    line-height: normal;
    font-weight: 600;
}

.janhome-industiserve p {
    font-family: satoshi, sans-serif;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

a {
    text-decoration: none !important;
}

@media (max-width: 767px) {
    .industry-pointer-slider {
        flex-direction: column;
    }

    .industry-pointer-slider .pointer-container {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }

    .industry-pointer-slider .pointer-container .ind_leftTxtdiv {
        white-space: nowrap;
        min-width: max-content;
        flex-shrink: 0;
    }

    .industry-pointer-slider .pointer-container .ind_leftTxtdiv {
        white-space: nowrap;
        min-width: max-content;
        flex-shrink: 0;
    }

    .industry-pointer-slider .ind_rightTxtdiv {
        margin-top: 15px;
    }

    .janhome-industiserve h3 {
        font-size: 28px !important;
        line-height: normal !important;
        font-weight: 600;
    }

}

/* .dark-mode .custom-dropdown-menu{
    background-color: #0d063e;

}
.dark-mode .custom-dropdown-menu .dropdown-header{
    color: #fff;
    border-bottom: 2px solid #919191;
}
.dark-mode .custom-dropdown-menu .dropdown-header i{
    color: #fff !important;
}
.dark-mode .custom-dropdown-menu a.dropdown-item{
    color: #fff !important;
}
.dark-mode .custom-dropdown-menu a:hover{
    color:  #fff !important;
    background-color: #0d063e !important;
} */
.dark-mode .quote-container {
    background: #0d063e;
}

.dark-mode .contact-option {
    border: 2px solid #673ab7;
    background: #673AB7;
}

.dark-mode .contact-option i {
    color: #ffffff;
}

.dark-mode .contact-area .card {
    background-color: #0d063e;
}

.dark-mode .contact-area .card .card-body {
    background-color: #0d063e;
}

.dark-mode .contact-area .card .bg-white {
    background-color: #0d063e !important;
}

.dark-mode .contact__form form label {
    color: #ffffff;
}

.dark-mode .contact__form form input,
.dark-mode .contact__form form textarea {
    color: #fff;
}

.dark-mode .section-header {
    color: #fff;
}

.dark-mode .dark-mode .select2-container--default .select2-selection--single {
    background-color: #0d063e !important;
    color: #fff !important;
}

.dark-mode .iti__arrow {
    border-top: 4px solid #f9f9f9;
}

.dark-mode .iti__country-list {
    background-color: #0d063e !important;
}

.dark-mode .select2-container--default .select2-selection--single {
    background-color: #0d063e;
}

.dark-mode .text-area .text-muted {
    color: #fff !important;
}

.dark-mode .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent;
}

.dark-mode input::placeholder,
.dark-mode textarea::placeholder {
    color: #dad5d5;
    /* light gray */
}

.dark-mode .portfolio-detail-text p {
    color: #fff !important;
}

.dark-mode .vertical-slider .thumbnails {
    background-color: #29254e;
}

.dark-mode .step-title {
    color: #fff;
    ;
}

.dark-mode .form-label {
    color: #fff !important;
}

.dark-mode .form-control {
    background-color: #0d063e;
    color: #fff !important;
}

/* mega menu  */


.custom-mega-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}

.custom-mega-menu>ul>li {
    position: relative;
}

.custom-mega-menu>ul>li>a {
    color: #fff;
    text-decoration: none;
    padding: 20px;
    display: block;
    font-weight: 600;
}

.custom-mega-menu>ul>li:hover {
    background: #122b58;
}

/* ===== DESKTOP MEGA MENU ===== */
.cmm-mega {
    position: absolute;
    top: 100%;
    /* below the nav */
    left: 50%;
    /* anchor at middle */
    transform: translateX(-50%);
    /* shift back half width */
    width: 100%;
    max-width: 1000px;
    /* your preferred max */
    display: flex;
    background: #f5f6fa;
    color: #000;
    transition: all .25s ease;
    border-radius: 5px;
    box-shadow: 0 0 40px rgba(0, 0, 0, .25);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}

.custom-mega-menu>ul>li:hover .cmm-mega {
    visibility: visible;
    opacity: 1;
}

.cmm-category.active .cat_hover_icon {
    visibility: visible;
    opacity: 1;
    color: #fff;

}

.cat_hover_icon {
    visibility: hidden;
    opacity: 0;
    color: #fff !important;
    margin-left: auto;
}

/* Left categories */
.cmm-left {
    width: 290px;
    /* background: #fff; */
    padding: 0;
    margin-right: 30px;
}

.cmm-category {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    gap: 15px;
    height: 50px;
    margin: 4px 0;
    padding: 0 20px;
    cursor: pointer;
    text-transform: uppercase;
    color: #000;
    line-height: 22px;
}

.cmm-category.active i {
    color: #000;
}

.cmm-category svg {
    fill: #0181dd;
}

.cmm-category.active {
    background: #5449BB;
    color: #fff;
    border-radius: 7px;
}

.cmm-category.active i {
    color: #fff !important;
}

/* Right content */
.cmm-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    min-height: 335px;
    background-image: url(../images/download.svg), linear-gradient(180deg, #03112f 0, #051d4e);
    background-repeat: no-repeat;
    border-radius: 4px;
    display: flex;
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    background-position: 104% 33%, 0 0;
    background-size: 338px auto, cover;
    padding: 20px 25px;
}

.cmm-right::before {
    background: #fff;
    content: "";
    height: 260%;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: rotate(33deg);
    transform-origin: top right;
    width: 100%;
    z-index: -1;
    right: 12%;
}

/* .cmm-sub {
    width: 75%;
} */

.cmm-sub ul {
    column-count: 2;
    margin: 0;
    padding: 0;
    list-style: none;
    display: contents !important;
}

.cmm-sub li {
    padding: 4px 0;
}

.cmm-sub li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all .2s;
}

.cmm-sub li a:hover {
    color: #0181dd;
    transform: translateX(8px);
}

/* Badge */
.cmm-badge {
    width: 25%;
    display: flex;
    /* flex-direction: column; */
    align-items: end;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    gap: 20px;
}

.cmm-badge svg {
    fill: #061b3a;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.cmm-badge span {
    color: #fff;
    margin-right: 40px;
}

/* ===== MOBILE ===== */
@media (max-width:1200px) {
    .custom-mega-menu ul {
        flex-direction: column;
    }

    .custom-mega-menu>ul>li>a {
        padding: 15px;
    }

    .cmm-mega {
        position: static;
        flex-direction: column;
        background: linear-gradient(125deg, #073789 20%, #091123 80%);
        box-shadow: none;
        border-radius: 0;
        visibility: visible;
        opacity: 1;
        display: none;
    }

    .custom-mega-menu>ul>li.active .cmm-mega {
        display: block;
    }

    .cmm-left {
        width: 100%;
        background: none;
        padding: 0;
    }

    .cmm-category {
        color: #fff;
        justify-content: space-between;
        background: rgba(255, 255, 255, .1);
        border-radius: 5px;
        margin: 5px 0;
        padding: 15px 20px;
    }

    .cmm-category svg {
        fill: #71a0fa;
    }

    .cmm-category.active {
        background: rgba(255, 255, 255, .2);
    }

    .cmm-right {
        flex: none;
        background: none;
        padding: 0;
        min-height: auto;
        display: block;

    }

    .cmm-sub {
        width: 100%;
    }

    .cmm-sub ul {
        column-count: 1;
    }

    .cmm-sub li {
        border-top: 1px solid rgba(255, 255, 255, .2);
        padding: 12px 20px;
    }

    .cmm-sub li a {
        color: #fff;
    }

    .cmm-sub li a:hover {
        color: #71a0fa;
        transform: none;
    }

    .cmm-badge {
        display: none;
    }
}

.custom-mega-menu:hover .cmm-mega {
    visibility: visible !important;
    opacity: 1 !important;
}

.cmm-mega {
    padding: 20px;
}

.cmm-sub ul li a {
    font-size: 14px !important;
    color: #000 !important;
    text-decoration: none;
    font-weight: 600 !important;
    transition: all .2s;
    padding: 0 !important;
}

.cmm-sub ul li a:hover {
    color: #5449BB !important;
}

.custom-mega-menu::after {
    border-color: #fff transparent;
    border-style: none solid solid;
    border-width: 8px;
    content: "";
    height: 0;
    left: 43%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(50% + 5px);
    transform: translate(-50%, 16px);
    /* transition: all .1s; */
    width: 0;
    z-index: 1;
}

.custom-mega-menu:hover::after {
    opacity: 1;
    /* transform: translate(-50%, 0); */
}

.blog__content h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog__content h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.card_banner span {
    color: #fff !important;
}

.offcanvas-body span {
    color: #fff !important;
}

.ck_content mark {
    background: #ffecb3;
    padding: 0 4px;
    border-radius: 2px;
}

/* Horizontal line */
.ck_content hr {
    border: 0;
    border-top: 1px solid #052b5b7a;
    margin: 2em 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .ck_content {
        font-size: 15px;
        line-height: 1.6;
    }

    .ck_content h1 {
        font-size: 1.6em;
    }

    .ck_content h2 {
        font-size: 1.4em;
    }

    .ck_content h3 {
        font-size: 1.2em;
    }

    .ck_content h4 {
        font-size: 1.1em;
    }

    .ck_content h5 {
        font-size: 1em;
    }

    .ck_content h6 {
        font-size: 0.95em;
    }

    .ck_content blockquote {
        margin: 1em 0;
        padding-left: 12px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .ck_content {
        font-size: 14px;
        line-height: 1.5;
    }

    .ck_content h1 {
        font-size: 1.4em;
    }

    .ck_content h2 {
        font-size: 1.3em;
    }

    .ck_content h3 {
        font-size: 1.15em;
    }
}

.item .single-post h5 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.banner__bg{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
}