/* Regular */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Bold */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Bold Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Medium Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Light Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

/* Extra Light */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Extra Light Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

/* Thin */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* Thin Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

/* SemiBold */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* SemiBold Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

/* ExtraBold */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* ExtraBold Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/* Black */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Black Italic */
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}


html {
    scroll-behavior: smooth;
}

:root {
    --blue: #0d6efd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --orange: #fd7e14;
    --orange2: #ff6600;
    --orange-1: #ffddbf;
    --yellow: #ffc107;
    --green: #198754;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #0a0e74;
    --primary-1: #2E2D74;
    --primary-2: #033f7e;
    --primary-3: #044F9E;
    --primary-4: #015FC9;
    --secondary: #ED1818;
    --secondary-1: #ff0000;
    --secondary-2: #C8000B;
    --tartiary-1: #fd7e14;
    --tertiary: #ff6600;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #F2F5F9;
    --dark-0: #222;
    --dark: #16243D;
    --blue-1: #00ACEE;
    --blue-light: #0099FF;
    --blue-dark: #007bff;
    --blue-deep: #2E2D74;


}

.dark-gradient {background-image: linear-gradient(rgb(27, 27, 30), rgba(0, 0, 0, 0.2)) !important;}
.primary-gradient {
    /*background-color: #0a0e74; !* Fallback *!*/
    background-image: linear-gradient(to bottom, #0a0e74, rgba(10, 14, 116, 0.6));
    /*color: white;*/
}


/*TODO*/
/*** Spinner Start ***/

/*#spinner {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: opacity .5s ease-out, visibility 0s linear .5s;*/
/*    z-index: 99999;*/
/*}*/
/**/

.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*TODO*/
/*#spinner.show {*/
/*    transition: opacity .5s ease-out, visibility 0s linear 0s;*/
/*    visibility: visible;*/
/*    opacity: 1;*/
/*}*/

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/*** Spinner End ***/

@media (max-width: 767px) {
    .some-large-element {
        display: none;
    }

    body {
        font-size: 14px;
    }
}

a.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 0;
    border-radius: 30px 30px 0 0;
    transition: 1s;
    z-index: 99;
}

/*** Heading ***/
h1,
.h1,
h2,
.h2,
.fw-bold {
    /*font-weight: 700 !important;*/
    font-family: 'Barlow', sans-serif !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    /*font-weight: 600 !important;*/
    font-family: 'Barlow', sans-serif !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    /*font-weight: 500 !important;*/
    font-family: 'Barlow', sans-serif !important;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn.btn-light {
    color: var(--primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--white);
    background: var(--dark);
}

.btn.btn-dark {
    color: var(--white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--primary);
    background: var(--light);
}

@media (max-width: 767px) {
    .btn {
        font-size: 14px;
        padding: 6px 10px;
    }

    .btn-lg-square {
        width: 44px;
        height: 44px;
    }
}

/** NAVBAR HERE */


/*** Carousel Header Start ***/

/* Base Styles */
#header-carousel .header-carousel {
    position: relative;
    width: 100%;
}

/* Carousel Container Styles */
.main-carousel .c1{
    /*background-color: rgb(27, 27, 30); !* fallback *!*/
    /*background-image: linear-gradient(rgb(27, 27, 30), rgba(0, 0, 0, 0.2));*/
    width: 100%;
}

.main-carousel .c1 {
    padding: 0;
}

.main-carousel .carousel-item {
    position: relative;
    height: auto;
    min-height: 42.5rem; /* 680px */
    width: 100%;
    overflow: hidden;
}

/* Image Styles */
.main-carousel .carousel-img img {
    width: 100%;
    height: auto;
    max-height: 45rem; /* 720px */
    object-fit: cover;
    object-position: center;
}

/* Caption Styles */
.main-carousel .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    padding-left: 6.25rem; /* 100px */
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    background: rgba(2, 17, 32, 0.7);
    z-index: 1;
}

.main-carousel .carousel-caption .caption-inner {
    border-radius: 0.625rem; /* 10px */
    background: rgba(0, 0, 0, .2);
    padding: 1.5rem;
    max-width: 90%;
    text-align: left;
    margin-right: auto;
}

.main-carousel .carousel-caption h4,
.main-carousel .carousel-caption h1 {
    margin-bottom: 1.5rem; /* 24px */
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.main-carousel .carousel-caption p {
    font-size: clamp(1rem, 1.5vw, 1.25rem); /* 16px - 20px */
    margin-bottom: 1.625rem; /* 26px */
}

.main-carousel .carousel-caption .btn {
    padding: 1rem 1.5rem;
    margin-right: 0.5rem;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
}

/* Control Styles */
.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    opacity: .4;
    height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary);
    border: 0.625rem solid var(--secondary); /* 10px */
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

/* Typed Text Styles */
.typed-container {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
}

.typed-text {
    display: inline-block;
    color: white;
    font-size: clamp(1rem, 1.5vw, 1.25rem); /* 16px - 20px */
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.typed-cursor {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-carousel .carousel-caption {
        padding-left: 2rem;
    }

    .main-carousel .carousel-caption .caption-inner,
    .main-carousel .carousel-caption-c2 .caption-inner {
        padding: 1rem;
    }

    .typed-container {
        bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .main-carousel .carousel-item {
        min-height: 35rem; /* 560px */
        /*background: url("../img/bg-1.png") center/cover no-repeat;*/
    }

    .main-carousel .c1 {
        padding: 3.875rem 0; /* 75px */
    }

    .main-carousel .carousel-img img {
        position: relative;
        height: auto;
    }

    .main-carousel .carousel-caption {
        position: relative;
        top: auto;
        background: none;
        padding: 1.5rem 1rem;
        align-items: center;
    }

    .main-carousel .carousel-caption .caption-inner {
        max-width: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 2.5rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-width: 0.375rem; /* 6px */
    }
}

@media (max-width: 575px) {
    .main-carousel .carousel-item {
        min-height: 30rem; /* 480px */
    }

    .main-carousel .carousel-caption h4,
    .main-carousel .carousel-caption h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .main-carousel .carousel-caption p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .main-carousel .carousel-caption .btn {
        padding: 0.75rem 1rem;
        margin: 0 0.25rem 0.5rem 0;
        font-size: 0.875rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .carousel-control-next,
    .carousel-control-prev {
        transition: none;
    }

    .typed-cursor {
        animation: none;
        opacity: 1;
    }
}

/*** Carousel Slider End ***/


/*** About image ***/
/*.about-img {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.about-img::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background: url(../img/bg-about-img.png) top left no-repeat;*/
/*    background-size: contain;*/
/*}*/


 .trusted-by-container {
     width: 100%;
     overflow: hidden;
     position: relative;
 }

.trusted-by-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.trusted-by-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.trusted-by-item:hover {
    transform: scale(1.1);
    opacity: 1 !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .trusted-by-track {
        gap: 1.5rem;
        animation-duration: 20s;
    }
}

/*INDUSTRY SOLUTIONS */
.hover-transform {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-transform:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.hover-transform-icon {
    transition: transform 0.3s ease;
}

.hover-transform:hover .hover-transform-icon {
    transform: scale(1.1);
}

/*OUR TECHNOLOGY*/

/* Custom tab styling */
 .nav-tabs-custom {
     border-bottom: 2px solid #dee2e6;
     padding: 0 1rem;
     background-color: #f8f9fa;
 }

.nav-tabs-custom .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 1rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
    margin-bottom: -2px;
}

.nav-tabs-custom .nav-link:hover {
    color: var(--primary);
    border-color: transparent;
}

.nav-tabs-custom .nav-link.active {
    color: var(--primary);
    background: white;
    border: none;
    font-weight: 600;
}

/* Tech grid styling */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tech-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.tech-item i {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.9rem;
}

.tech-item .fa-check-circle {
    color: var(--success);
}

.tech-item.checked {
    background: rgba(25, 135, 84, 0.05);
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .nav-tabs-custom .nav-link {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(27, 27, 30), rgba(0, 0, 0, 0.2)), url(../img/bg-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--white);
}

@media (max-width: 767px) {
    .bg-breadcrumb {
        padding: 40px 0;
    }
}

/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--white);
}

.feature .feature-item:hover a.btn {
    background: var(--white);
    color: var(--primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--dark);
    color: var(--white);
}

/*** Large Feature Specific ***/
.feature .large-feature .feature-item .feature-icon {
    width: 100px;
}

@media (max-width: 767px) {

    .feature .feature-item {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        font-size: 1rem;
    }

    /*.feature .large-feature {*/
    /*    display: none;*/
    /*}*/

    .feature .mobile-feature .feature-item {
        height: 100px;
        font-size: 16px;
        padding-top: 20px;
    }

    .feature .feature-item .feature-icon {
        width: 20px;
        height: 20px;
    }
}

/*** Feature End ***/


/*** Service Start ***/

.service .service-item {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.service-item .service-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
}

.service-item .service-header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(3, 21, 39, 0.3);
    transition: 0.5s;
}

.service-item:hover .service-header::after {
    height: 100%;
}

.service-item .service-header .service-icon {
    position: absolute;
    width: 70px;
    top: 0;
    right: 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.service-item .service-header .service-icon i {
    color: var(--primary);
    transition: 0.5s;
}

.service-item:hover .service-header .service-icon i {
    transform: rotateX(360deg);
    color: var(--white);
}

.service-item:hover .service-header .service-icon {
    top: 0;
    color: var(--white);
    background: var(--primary);
}

.service-item .service-content {
    color: var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.4);
}

.service-item .service-content .title a {
    color: var(--orange);
}

.service-item .service-content .h4,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item .service-content .title {
    padding: 5px 0;
}

.service-item .service-content .title a {
    font-size: 1.8rem;
    font-weight: bold;
}

.service-item .service-content .content {
    margin-top: auto;
    width: 100%;
}

.service-item .service-content .content a,
.service-item .service-content .content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 2rem;
}

.service-item .service-content .content img {
    width: 100%;
    max-width: 100px;
    padding-right: 1.5rem;
}

.service-item:hover .service-content .content .h4,
.service-item:hover .service-content .content p {
    /*color: var(--white);*/
}

.service-item:hover .service-content .btn.btn-primary {
    /*color: var(--primary);*/
    /*background: var(--white);*/
}

.service-item:hover .service-content .btn.btn-primary:hover {
    color: var(--white);
    background: var(--dark);
}

.service-item:hover .service-content a:hover {
    color: var(--secondary);
}

.service-item .service-content::after {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
    z-index: 99;
}

.service-item:hover .service-content::after {
    height: 100%;
}


@media (max-width: 767px) {

    .service .service-item {
        width: 100%;
    }

    .service-item .service-content .title {
        padding: 1px 0;
    }

    .service-item .service-content .title a {
        font-size: 1.6rem;
        font-weight: bold;
    }

    .service-item .service-content .content {
        margin-top: auto;
        width: 100%;
    }

    .service-item .service-content .content img {
        width: 100%;
        max-width: 100px;
        padding-right: 1.5rem;
    }

    .service-item .service-content .content a.btn {
        font-size: 1rem;
        margin-top: 15px;
        font-weight: normal;
    }

    .service-item .service-content .content a.sw-btn {
        margin-top: 14px;
    }

    .service-item .content .row .col-6 a {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1rem;
    }

    .service-item .content .row .col-6 img {
        margin-bottom: 8px;
        max-width: 100px;
        width: 100%;
        object-fit: cover;
    }

    .service-item .content .row .col-6 .ms-2 {
        margin-left: 0;
        text-align: left;
    }

    .service-item .content .row .col-6 span {
        padding-top: -400px;
    }

    .service-item .content .row .col-6 small {
        display: none;
    }
}

/*** Service End ***/


/*** Solution Card*/

 .solution-card {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.solution-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}
.bg-purple {
    background-color: #6f42c1;
}
.text-purple {
    color: #6f42c1;
}
.btn-purple {
    background-color: #6f42c1;
    border-color: #6f42c1;
    color: white;
}
.bg-orange {
    background-color: #fd7e14;
}
.text-orange {
    color: #fd7e14;
}
.btn-orange {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
}
.bg-teal {
    background-color: #20c997;
}
.text-teal {
    color: #20c997;
}
.btn-teal {
    background-color: #20c997;
    border-color: #20c997;
    color: white;
}

/*88 Solution end*/


/*** FAQs-Customized for You Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--white);
    background: var(--primary);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button i {
    margin-right: 10px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--primary);
    background: var(--light);
}

@media (max-width: 767px) {
    .accordion-body {
        font-size: 1rem;
    }
}

#faqImage {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.fading {
    opacity: 0;
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--white);
    background: var(--primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--primary);
}

/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--white);
    background: var(--primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--white);
}

.team .team-item:hover .team-title {
    background: var(--dark);
}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--dark);
    color: var(--white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--dark);
    color: var(--white);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.contact-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.divider {
    width: 80px;
    height: 3px;
    opacity: 1;
}
.contact-info-item {
    border-left: 3px solid var(--tertiary);
    /*border-left: 3px solid #0d6efd;*/
    padding-left: 1.5rem;
}
.map-container {
    border: 1px solid rgba(0,0,0,0.1);
}
.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.social-links .btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#responseMessage {
    transition: all 0.3s ease;
}
.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;
}

.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/

/*** About Page Start ***/

.about-item-content h2 {
    /*font-weight: bold;*/
    color: var(--white);
    border-bottom: 1px solid var(--white);
}

.about-item-content span {
    font-weight: bold;
}

.about-item-content p {
    color: var(--white);
}

/*** About Page End ***/


/*** Footer Start ***/
.footer {
    background: var(--dark);
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    /*line-height: 35px;*/
    color: var(--white);
    transition: 0.5s;
}

.footer .footer-item p {
    /*line-height: 35px;*/
}

.footer .footer-item a:hover {
    color: var(--secondary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--light);
    color: var(--primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--white);
}

.footer .contacts .contact-link,
.footer .contacts a.text-gray,
.copyright a:hover {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer .contacts .contact-link:hover,
.footer .contacts a.text-gray:hover,
.copyright a:hover{
    color: var(--white) !important;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/