
:root {
    --primary-color: #FFFFFF;
    --secondary-color: #010f23;
    --bg-color: #000b1b;
    --text-color: #ffffff;
    --accent-color: #5858FD;
    --accent-secondary-color: #9488E5;
    --white-color: #FFFFFF;
    --divider-color: #141414;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: 'Helvetica';
    --accent-font: "Manrope", sans-serif;
}


html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 60% at 20% 10%, #0d3b8a3b 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 80% 80%, #1a6cff36 0%, transparent 60%), radial-gradient(ellipse 40% 30% at 60% 20%, #00c2ff11 0%, transparent 50%);
    pointer-events: none;
}

::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(360deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-secondary-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--primary-color);
    margin: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--primary-color);
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 100px;
    padding: 17px 55px 17px 24px;
    border: none;
    outline: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover {
    background-position: right center;
    padding: 17px 24px 17px 55px;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.btn-default.btn-highlighted {
    color: var(--bg-color);
    background: var(--primary-color);
}

.btn-default.btn-highlighted::before {
    background-color: transparent;
    background-image: url('../images/arrow-white.svg');
    z-index: 1;
}

.btn-highlighted::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    border-radius: 50%;
    background-size: 200% auto;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::after,
.btn-default:hover::before {
    right: 100%;
    transform: translate(calc(100% + 5px), -50%);
}

.btn-default.btn-highlighted:hover:after {
    background-position: right center;
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 3px 28px 3px 0;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.readmore-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    background-position: right center;
}

/* .cb-cursor:before {
    background: linear-gradient(180deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
} */

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-secondary-color) transparent var(--accent-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.light-section {
    background-color: var(--secondary-color);
}

.light-section .container-fluid {
    padding: 0;
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-sub-heading .section-sub-title,
.section-title .section-sub-title {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
    text-transform: capitalize;
    color: var(--primary-color);
    background: var(--secondary-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 30px;
    padding: 5px 20px 5px 42px;
    margin-bottom: 15px;
}

.section-sub-heading .section-sub-title {
    margin-bottom: 0;
}

.light-section .section-sub-heading .section-sub-title,
.light-section .section-title .section-sub-title {
    background: #0d6efd8a;
}

.section-sub-heading .section-sub-title::before,
.section-title .section-sub-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: url('../images/icon-sparkle.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
}

.section-title h1 {
    font-size: 65px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.box-border-gradiant {
    position: relative;
    background: var(--secondary-color);
    border-radius: 20px;
}

.light-section .box-border-gradiant {
    background: var(--divider-color);
}

.box-border-gradiant::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#227bff, #003178) padding-box, linear-gradient(180deg, var(--dark-divider-color) 0%, transparent 90%) border-box;
    border: 2px solid #0d6efd59;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    z-index: 0;
}

.light-section .box-border-gradiant::before {
    background: linear-gradient(#000b1b, #000b1b) padding-box, linear-gradient(180deg, var(--dark-divider-color) 0%, transparent 90%) border-box
}

.box-border-gradiant * {
    position: relative;
    z-index: 1;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/

/*** 	    03. Header css		  ***/

/************************************/

header.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: transparent;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transform: translateY(0);
    background: var(--secondary-color);
    border-bottom: 1px solid var(--dark-divider-color);
    border-radius: 0;
}

.navbar {
    padding: 30px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 10px;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    padding: 12px 10px !important;
    color: var(--primary-color);
    background: transparent;
    border-radius: 0px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-secondary-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--primary-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--bg-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    position: relative;
    top: 0;
}

.slicknav_btn {
    background: linear-gradient(270deg, var(--bs-blue) 3.49%, #4691ff 97.8%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: #000b1b;
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--bg-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--bg-color);
}

/************************************/

/*** 	    04. Hero css	      ***/

/************************************/

.hero {
    position: relative;
    background-color: var(--secondary-color);
    background-image: url('../images/hero-bg-shape.png');
    background-repeat: no-repeat;
    background-position: bottom -160px center;
    background-size: auto;
    padding: 290px 0 180px;
    overflow: hidden;
}

.hero1 {
    position: relative;
    background-color: var(--secondary-color);
    background-image: url('../images/hero-bg-shape.png');
    background-repeat: no-repeat;
    background-position: bottom -160px center;
    background-size: auto;
    padding: 100px 0 180px;
    overflow: hidden;
}


.hero.hero-image-layout {
    background: url('../images/hero-bg-image.jpg');
}

.hero.hero-video-layout .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




.hero.hero-video-layout .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.hero.hero-slider-layout .hero-image-slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-slider-layout .hero-image-slider .swiper,
.hero.hero-slider-layout .hero-slider-image {
    height: 100%;
}

.hero.hero-slider-layout .hero-slider-image figure {
    position: relative;
    display: block;
    height: 100%;
}

.hero.hero-image-layout::before,
.hero.hero-video-layout .hero-bg-video::before,
.hero.hero-slider-layout .hero-slider-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 12%, #00000045 40.63%), linear-gradient(180deg, transparent 29.87%, rgb(0 102 252 / 32%) 81.81%);
    width: 100%;
    height: 100%;
}




.hero1.hero-video-layout1 .hero-bg-video1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%   ;
}

.hero1.hero-video-layout1 .hero-bg-video1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero1.hero-slider-layout1 .hero-image-slider1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.hero1.hero-image-layout1::before,
.hero1.hero-video-layout1 .hero-bg-video1::before,
.hero1.hero-slider-layout1 .hero-slider-image1 figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 12%, #00000045 40.63%), linear-gradient(180deg, transparent 29.87%, rgb(0 102 252 / 32%) 81.81%);
    width: 100%;
    height: 100%;
}


.hero.hero-slider-layout .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.hero-content .section-title .section-sub-title {
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.hero-content .section-title h1 span {
    background: linear-gradient(to right, #1372ff 0%, #4b93ff 50%, #4791ff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.hero-content .section-title h1:hover span {
    background-position: right center;
}

.hero-content .section-title p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 30px;
}

.hero-info-box {
    margin: 30px 30px 0;
}

.hero-info-box .container-fluid {
    padding: 0;
}

.hero-info-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-info-item {
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.hero-info-item-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.hero-info-item-header-content {
    max-width: 90px;
}

.hero-info-item-header-content .hero-info-item-header-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.hero-info-item-header-content h2 {
    font-size: 36px;
}

.hero-info-item .icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.hero-info-item:hover .icon-box {
    background-position: right center;
}

.hero-info-item .icon-box img {
    width: 100%;
    max-width: 20px;
}

.hero-info-item-image figure {
    display: block;
    border-radius: 10px;
}

.hero-info-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.189;
    object-fit: cover;
    border-radius: 10px;
}

.hero-info-item.box-2 {
    justify-content: end;
    padding: 30px 20px 0;
}

.hero-info-item.box-2 .hero-info-item-image figure img {
    aspect-ratio: 1 / 0.565;
}

.hero-info-item-quote {
    position: relative;
}

.hero-info-item-quote::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 77px;
    height: 55px;
    background: url('../images/icon-hero-info-quote.svg') no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-info-item-quote h3 {
    font-size: 20px;
    font-weight: 600;
}

.hero-info-client-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 20px;
}

.satisfy-client-images {
    display: flex;
    align-items: center;
}

.satisfy-client-image {
    position: relative;
    display: inline-block;
    margin-left: -14px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.satisfy-client-image:first-child {
    margin: 0;
}

.satisfy-client-image.add-more {
    width: 42px;
    height: 42px;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
    font-size: 16px;
    color: var(--primary-color);
}

.satisfy-client-image.add-more h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1em;
}

.satisfy-client-image figure {
    display: block;
}

.satisfy-client-image figure img {
    width: 100%;
    max-width: 40px;
    border-radius: 50%;
}

.hero-info-client-content {
    max-width: 220px;
}

.hero-info-client-content p {
    margin: 0;
}

.hero-info-item.box-4::after {
    content: '';
    position: absolute;
    top: -17px;
    right: -10px;
    width: 132px;
    height: 132px;
    background: url('../images/hero-info-item-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
    animation: movestyle 3s linear infinite alternate;
}

@keyframes movestyle {
    0% {
        transform: rotate(-115deg);
    }
    100% {
        transform: rotate(-125deg);
    }
}

.hero-info-item.box-4 .icon-box {
    width: 60px;
    height: 60px;
}

.hero-info-item.box-4 .icon-box img {
    max-width: 30px;
}

.hero-info-item-content h3 {
    font-size: 22px;
}

.hero-info-item-content p {
    margin: 10px 0 0;
}

/************************************/

/*** 	   05. About Us css	      ***/

/************************************/

.about-us {
    padding: 120px 0;
}

.about-us .section-row .section-title.section-title-center {
    max-width: 1050px;
}

.about-us-content-box {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 40px;
}

.about-us-counter-box {
    position: relative;
    width: calc(50% - 50px);
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.about-us-counter-box::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    background: var(--primary-color);
    opacity: 30%;
    width: 1px;
    height: 90%;
}

.about-us-counter-box h2 {
    font-size: 15.625vw;
    line-height: 0.8em;
    background: linear-gradient(270deg, var(--bs-blue) 3.49%, #68a5ff 97.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.about-us-counter-box p {
    font-size: 20px;
    line-height: 1em;
    writing-mode: sideways-lr;
    margin: 0;
}

.about-us-body {
    width: calc(50% - 50px);
}

.about-us-content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
}

.about-us-content p {
    margin: 20px 0 0;
}

.about-us-content-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 60px;
    margin-top: 30px;
}

.about-client-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.about-client-content {
    max-width: 150px;
}

.about-client-content p {
    margin: 0;
}

.about-client-content p span {
    font-weight: 700;
    color: var(--primary-color);
}

.company-supports-slider-box {
    margin-top: 120px;
}

.company-supports-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.company-supports-content hr {
    height: 2px;
    flex-grow: 1;
    color: transparent;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.20) 0%, transparent 100%);
    opacity: 1;
    margin: 0;
}

.company-supports-content hr:last-child {
    transform: rotate(180deg);
}

.company-supports-content p {
    margin-bottom: 0;
}

.company-supports-logo {
    text-align: center;
}

.company-supports-logo img {
    width: 100%;
    max-width: 165px;
    height: 30px;
    filter: brightness(0.5);
    transition: all 0.5s ease-in-out;
}

.company-supports-logo img:hover {
    filter: brightness(1);
}

/************************************/

/*** 	 06. Our Services css	  ***/

/************************************/

.our-services {
    padding: 120px 0;
}

.service-item {
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
    overflow: hidden;
}

.service-item-header-box {
    padding: 30px;
}

.service-item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-item-header .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-header .icon-box {
    background-position: right center;
}

.service-item-header .icon-box img {
    width: 100%;
    max-width: 30px;
}

.service-item-title {
    width: calc(100% - 75px);
}

.service-item-title h2 {
    font-size: 22px;
}

.service-item-title h2 a {
    color: inherit;
}

.service-item-content p {
    margin: 0;
}

.service-item-content ul {
    list-style: none;
    border-top: 1px solid var(--dark-divider-color);
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.service-item-content ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 26px;
    margin-bottom: 15px;
}

.service-item-content ul li:last-child {
    margin-bottom: 0;
}

.service-item-content ul li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    background: url('../images/icon-sparkle.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.service-item-video {
    width: 100%;
    height: 200px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.service-item-video a {
    display: block;
    cursor: none;
}

.service-item-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-footer-text p span {
    display: inline-block;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    color: var(--white-color);
    font-family: var(--accent-font);
    font-size: 14px;
    line-height: 1em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 10px;
}

.section-footer-text p a {
    display: inline-block;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-secondary-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--accent-color);
}

.section-footer-text ul {
    width: 100%;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.section-footer-text ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: var(--primary-color);
    margin-right: 10px;
}

.section-footer-text ul li:last-child {
    margin: 0;
}

.section-footer-text ul .section-footer-star {
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.section-footer-text.section-footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
    width: 100%;
    max-width: 20px;
}

.section-footer-text.section-satisfy-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
    border-color: var(--bg-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
    max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
    width: 32px;
    height: 32px;
    margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
    max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
    margin: 5px 0 0;
}

.light-section .section-footer-text.section-satisfy-img .satisfy-client-image {
    border-color: var(--secondary-color);
}

/************************************/

/*** 	  07. Our Features css	  ***/

/************************************/

.our-features {
    padding: 120px 0;
}

.feature-item {
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.feature-item.box-1 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.feature-item.box-1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/feature-item-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.feature-item-content h3 {
    font-size: 22px;
}

.feature-item-content p {
    margin: 10px 0 0;
}

.feature-item.box-1 .feature-item-image {
    display: inline-block;
    margin-bottom: 30px;
}

.feature-item-image figure {
    display: block;
    border-radius: 10px;
}

.feature-item-image figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.feature-item.box-1 .feature-item-image figure {
    margin: 0 -40px -30px;
}

.feature-item.box-1 .feature-item-image figure img {
    aspect-ratio: 1 / 0.571;
}

.feature-item-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item-list ul li {
    position: relative;
    line-height: 1.5em;
    width: calc(50% - 7.5px);
    padding-left: 26px;
}

.feature-item-list ul li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    background: url(../images/icon-sparkle.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.feature-item-box {
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item.box-2 {
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.feature-item.box-2:hover {
    background-position: right center;
}

.feature-item.box-2 .feature-item-body {
    align-content: center;
    max-width: 270px;
}

.feature-item.box-2 .feature-item-content p {
    color: var(--primary-color);
}

.feature-item-btn {
    margin-top: 40px;
}

.feature-item-btn .readmore-btn::before {
    background: var(--primary-color);
}

.feature-item-btn .readmore-btn::after {
    background-image: url('../images/arrow-primary.svg');
}

.feature-item.box-2 .feature-item-image {
    width: calc(100% - 290px);
    align-content: end;
}

.feature-item.box-2 .feature-item-image figure {
    margin: 0 -64px -40px -40px;
}

.feature-item.box-2 .feature-item-image figure img {
    aspect-ratio: 1 / 1;
}

.feature-item.box-3 {
    height: 100%;
    align-content: center;
    text-align: center;
    margin-bottom: 0;
}

.feature-client-box {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 20px;
    margin-top: 20px;
}

.feature-client-box .satisfy-client-images {
    justify-content: center;
}

.feature-item.box-4 {
    position: relative;
    align-content: end;
    padding: 10px;
}

.feature-item-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-item-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-video-content-box {
    position: relative;
    background: var(--dark-divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.feature-item.box-4 .feature-item-content p {
    color: var(--primary-color);
}

.feature-item.box-4 .feature-item-btn {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 20px;
    margin-top: 20px;
}

/************************************/

/*** 	  08. Our Process css	  ***/

/************************************/

.our-process {
    padding: 120px 0;
}

.process-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    height: 100%;
}

.process-item {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
}

.process-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.process-item:hover .icon-box {
    background-position: right center;
}

.process-item .icon-box img {
    width: 100%;
    max-width: 24px;
}

.process-item-content h3 {
    font-size: 22px;
}

.process-item-content p {
    margin: 10px 0 0;
}

.process-item-image-box {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    gap: 0;
}

.process-item-body {
    width: 62%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
}

.process-item-image {
    width: 38%;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 10px;
    align-content: end;
    padding: 10px 10px 0;
    transition: all 0.4s ease-in-out;
}

.process-item:hover .process-item-image {
    background-position: right center;
}

.process-item-image figure {
    display: block;
    max-width: 160px;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
}

.process-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.process-info-item {
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
}

.process-info-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/process-info-item-bg-image.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.process-info-item-body {
    position: relative;
    width: 65%;
    align-content: center;
    z-index: 1;
}

.process-info-item-title {
    margin-bottom: 40px;
}

.process-info-item-title h3 {
    font-size: 30px;
}

.process-info-counter-list {
    max-width: 70%;
}

.process-info-counter-item {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.process-info-counter-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.process-info-counter-item h2 {
    font-size: 48px;
    line-height: 1em;
}

.process-info-counter-item p {
    margin: 5px 0 0;
}

.process-info-item-btn {
    margin-top: 40px;
}

.process-info-item-image {
    width: 35%;
    align-content: end;
}

.process-info-item-image figure {
    display: block;
    border-radius: 10px 0 0 0;
    margin: 0 -30px -40px -60px;
}

.process-info-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.47;
    object-fit: cover;
    border-radius: 10px 0 0 0;
}

/************************************/

/*** 	  09. Why Choose Us css	  ***/

/************************************/

.why-choose-us {
    padding: 120px 0;
}

.why-choose-item-list-1 {
    margin-right: 15px;
}

.why-choose-item-list-2 {
    margin-left: 15px;
}

.why-choose-item {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.why-choose-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.why-choose-item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.why-choose-item-header .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .why-choose-item-header .icon-box {
    background-position: right center;
}

.why-choose-item-header .icon-box img {
    width: 100%;
    max-width: 24px;
}

.why-choose-item-title {
    width: calc(100% - 65px);
}

.why-choose-item-title h3 {
    font-size: 22px;
}

.why-choose-item-content {
    margin-top: 15px;
}

.why-choose-item-content p {
    margin-bottom: 0;
}

.why-choose-image {
    text-align: center;
}

.why-choose-image figure {
    position: relative;
    display: block;
    max-width: 400px;
    border-radius: 0 0 200px 200px;
    overflow: hidden;
}

.why-choose-image figure::before {
    content: '';
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--dark-divider-color) 100%);
    border-radius: 50%;
    width: 100%;
    height: 400px;
}

.why-choose-image figure img {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1.6;
    object-fit: cover;
    margin: 0 auto;
    z-index: 1;
}

.why-choose-us .section-footer-text {
    margin-top: 60px;
}

/************************************/

/*** 	  10. Our Impact css	  ***/

/************************************/

.our-impact {
    padding: 120px 0;
}

.impact-item {
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
}

.impact-item-image {
    width: calc(47% - 10px);
}

.impact-item-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.impact-item-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.181;
    object-fit: cover;
    border-radius: 10px;
}

.impact-item-body {
    width: calc(53% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 10px;
}

.impact-item-title h3 {
    font-size: 22px;
}

.impact-item-content ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.impact-item-content ul li {
    position: relative;
    line-height: 1em;
    background-color: var(--dark-divider-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 30px;
    padding: 7px 18px 7px 40px;
}

.impact-item-content ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    background-image: url('../images/icon-sparkle.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
}

.impact-item-content p {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 25px;
    margin: 25px 0 0;
}

/************************************/

/***      11. What We Do css      ***/

/************************************/

.what-we-do {
    padding: 120px 0;
}

.what-we-image {
    height: 100%;
    margin-right: 15px;
}

.what-we-image figure {
    position: relative;
    display: block;
    height: 100%;
    border-radius: 20px;
}

.what-we-image figure::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    mask-image: url('../images/what-we-do-image-bg-shape.svg');
    background-image: url('../images/what-we-do-image-bg-shape.svg');
    background: var(--bg-color);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 149px;
    height: 145px;
    z-index: 2;
}

.what-we-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.005;
    object-fit: cover;
    border-radius: 20px;
}

.what-we-do-content {
    height: 100%;
    align-content: center;
}

.what-we-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.what-we-item-list {
    width: calc(100% - 210px);
}

.what-we-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.what-we-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.what-we-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.what-we-item:hover .icon-box {
    background-position: right center;
}

.what-we-item .icon-box img {
    width: 100%;
    max-width: 24px;
}

.what-we-item-content {
    width: calc(100% - 65px);
}

.what-we-item-content h3 {
    font-size: 22px;
}

.what-we-item-content p {
    margin: 10px 0 0;
}

.what-we-body-image {
    width: 100%;
    max-width: 190px;
}

.what-we-body-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.what-we-body-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.07;
    object-fit: cover;
    border-radius: 20px;
}

.what-we-content-btn {
    margin-top: 40px;
}

/************************************/

/***   	  12. Intro Video css     ***/

/************************************/

.intro-video {
    position: relative;
    overflow: hidden;
}

.intro-video::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-video .container-fluid {
    padding: 0;
}

.intro-video-box {
    position: relative;
    min-height: 900px;
}

.intro-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-box .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-play-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: none;
}

.intro-video-box .video-play-button a {
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white-color);
}

.video-play-button a span {
    position: relative;
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after {
    content: '';
    position: absolute;
    width: 160%;
    height: 160%;
    border: 35px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a span.bg-effect:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a span i {
    font-size: 20px;
    color: inherit;
    margin-left: 2px;
}

.video-play-button p {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    margin: 0;
}

/************************************/

/*** 	13. Our Testimonial css   ***/

/************************************/

.our-testimonial {
    padding: 120px 0;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.6s ease-in-out;
}

.testimonial-item-rating {
    position: relative;
    display: inline-block;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    z-index: 1;
}

.testimonial-item-rating i {
    font-size: 16px;
    background: inherit;
    color: var(--accent-color);
}

.testimonial-item-content p {
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.testimonial-item-author {
    border-top: 1px solid var(--dark-divider-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
}

.testimonial-author-image figure {
    display: block;
    border-radius: 50%;
}

.testimonial-author-image figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.testimonial-author-content {
    width: calc(100% - 65px);
}

.testimonial-author-content h2 {
    font-size: 20px;
}

.testimonial-author-content p {
    line-height: normal;
    margin: 5px 0 0;
}

.our-testimonial .section-footer-text {
    margin-top: 60px;
}

/************************************/

/***   		14. Our FAQ's css	  ***/

/************************************/

.our-faqs {
    padding: 120px 0;
}

.faqs-image-box {
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-right: 15px;
}

.faqs-image-box-1 {
    width: 53%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faqs-image figure {
    display: block;
    border: 10px solid var(--secondary-color);
    border-radius: 30px;
}

.faqs-image figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.faqs-image-box-1 .faqs-image {
    height: 100%;
}

.faqs-image-box-1 .faqs-image figure {
    height: 100%;
    margin-right: -225px;
    border-bottom: none;
    border-right: none;
}

.faqs-image-box-1 .faqs-image figure img {
    height: 100%;
    aspect-ratio: 1 / 0.9821;
}

.faqs-image-box-2 {
    width: 47%;
    position: relative;
    margin-top: auto;
    z-index: 1;
}

.faqs-image-box-2 .faqs-image figure {
    border-width: 15px 0 10px 15px;
    border-radius: 30px 20px 20px 30px;
    margin-left: -10px;
}

.faqs-image-box-2 .faqs-image figure img {
    aspect-ratio: 1 / 1.2;
}

.faqs-image-box-2::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 59px;
    width: 20px;
    height: 20px;
    mask: url('../images/image-corner-shape.svg');
    -webkit-mask: url('../images/image-corner-shape.svg');
    background-color: var(--secondary-color);
    mask-repeat: no-repeat;
    mask-size: cover;
    z-index: 1;
}

.faqs-counter-box {
    position: relative;
    text-align: center;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border: 10px solid var(--bg-color);
    border-radius: 30px;
    padding: 30px 40px;
    margin-top: -130px;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.faqs-counter-box:hover {
    background-position: right center;
}

.faqs-counter-box h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1em;
}

.faqs-counter-box p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.faq-accordion {
    height: 100%;
    align-content: center;
}

.faq-accordion .accordion-item {
    position: relative;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-item::before {
    border-radius: 10px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    background: transparent;
    color: var(--white-color);
    padding: 20px 60px 20px 25px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::before,
.faq-accordion .accordion-item .accordion-button.collapsed::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.faq-accordion .accordion-button:not(.collapsed)::before {
    background-position: right center;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-body {
    border-top: 1px solid var(--dark-divider-color);
    background: transparent;
    padding: 20px 25px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin: 0;
}

/************************************/

/*** 	   15. Our Blogs css	  ***/

/************************************/

.our-blog {
    padding: 120px 0 90px;
}

.post-item {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.post-item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.post-item-image figure {
    position: relative;
    display: block;
    height: 100%;
}

.post-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg-color);
    opacity: 50%;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.post-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.post-item:hover .post-item-image img {
    transform: scale(1.04);
}

.post-item-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.post-item-tag {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.post-item-tag a {
    display: inline-block;
    color: var(--primary-color);
    background-color: var(--dark-divider-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 7px 20px 7px 42px;
    transition: all 0.4s ease-in-out;
}

.post-item-tag a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-image: url('../images/icon-sparkle.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 12px;
    height: 12px;
}

.post-item-body-content {
    position: relative;
    z-index: 1;
}

.post-item-content h2 {
    font-size: 22px;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item-btn {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 20px;
    margin-top: 20px;
}

/************************************/

/***        16. Footer css        ***/

/************************************/

.main-footer {
    padding: 100px 0 0;
}

.footer-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    width: 100%;
    max-width: 275px;
}

.footer-contact-list {
    width: 100%;
    max-width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 30px;
}

.footer-contact-item {
    min-width: 280px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.footer-contact-item .icon-box img {
    width: 100%;
    max-width: 50px;
}

.footer-contact-item-content {
    width: calc(100% - 65px);
}

.footer-contact-item-content p {
    margin-bottom: 0;
}

.footer-contact-item-content h2 {
    font-size: 22px;
    margin-top: 5px;
}

.footer-contact-item-content p a,
.footer-contact-item-content h2 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-contact-item-content p a:hover,
.footer-contact-item-content h2 a:hover {
    color: var(--accent-color);
}

.footer-newsletter-box {
    max-width: 550px;
}

.footer-newsletter-box .footer-newsletter-title {
    margin-bottom: 40px;
}

.footer-newsletter-box .footer-newsletter-title h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-newsletter-form {
    width: 100%;
    max-width: 524px;
}

.footer-newsletter-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-newsletter-form .form-group {
    display: flex;
    flex-wrap: wrap;
    background: var(--divider-color);
    border-radius: 10px;
    padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
    width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.footer-newsletter-form .form-group .newsletter-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    transition: all 0.4s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
    background-position: right center;
}

.footer-newsletter-form .form-group .newsletter-btn i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-left: 5.208vw;
}

.footer-links {
    max-width: 48%;
}

.footer-links h2 {
    font-size: 22px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    line-height: 1.5em;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-copyright-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright-text p {
    margin-bottom: 0;
}

.footer-social-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li a {
    position: relative;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.footer-social-links ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.footer-social-links ul li a:hover:before {
    transform: scale(1);
}

.footer-social-links ul li a i {
    position: relative;
    font-size: 18px;
    z-index: 1;
}

/************************************/

/*** 	 17. About Us Page css	  ***/

/************************************/

.page-header {
    position: relative;
    background-color: var(--secondary-color);
    background-image: url('../images/page-header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 270px 0 160px;
    overflow: hidden;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 2;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 65px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box h1 span {
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.page-header-box h1:hover span {
    background-position: right center;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--text-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.our-approach {
    padding: 120px 0;
}

.our-approach-content {
    height: 100%;
    align-content: center;
}

.approach-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.approach-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.approach-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.approach-item:hover .icon-box {
    background-position: right center;
}

.approach-item:hover .icon-box img {
    width: 100%;
    max-width: 24px;
}

.approach-item-content {
    width: calc(100% - 65px);
}

.approach-item-content h3 {
    font-size: 22px;
}

.approach-item-content p {
    margin: 10px 0 0;
}

.our-approach-counter-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    margin-left: 15px;
    overflow: hidden;
}

.approach-counter-box-header {
    padding: 20px 20px 40px;
}

.approach-counter-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.approach-counter-item {
    position: relative;
    width: calc(33.33% - 40px);
    text-align: center;
}

.approach-counter-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: var(--dark-divider-color);
}

.approach-counter-item:nth-child(3n+3):before,
.approach-counter-item:last-child:before {
    display: none;
}

.approach-counter-item h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
}

.approach-counter-item p {
    margin: 5px 0 0;
}

.approach-counter-content p {
    margin: 0;
}

.approach-counter-box-image {
    height: 100%;
}

.approach-counter-box-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.approach-counter-box-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.4983;
    object-fit: cover;
    border-radius: 10px;
}

.our-analysis {
    padding: 120px 0;
}

.our-analysis-image-box {
    border-radius: 20px;
    padding: 20px;
    margin-right: 15px;
}

.analysis-image-box-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.analysis-info-box {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    background: var(--dark-divider-color);
    border-radius: 10px;
    padding: 30px;
}

.analysis-info-title h3 {
    font-size: 22px;
}

.circle {
    position: relative;
    display: inline-flex;
    color: var(--accent-color);
    border-radius: 50%;
}

.circle .progress_value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    font-family: var(--accent-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--dark-divider-color);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.analysis-info-content span {
    position: relative;
    display: inline-block;
    line-height: 1.5em;
    padding-left: 26px;
    margin-bottom: 10px;
}

.analysis-info-content span:last-child {
    margin-bottom: 0;
}

.analysis-info-content span::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    background: url(../images/icon-sparkle.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.analysis-image {
    background: var(--dark-divider-color);
    border-radius: 10px;
    padding: 20px;
}

.analysis-image figure {
    display: block;
}

.analysis-image figure img {
    width: 100%;
    object-fit: cover;
}

.analysis-image-box-1 .analysis-image {
    width: calc(50% - 10px);
    padding: 30px 20px 0;
}

.analysis-image-box-1 .analysis-image figure img {
    aspect-ratio: 1 / 1.114;
}

.analysis-image-box-2 .analysis-image figure img {
    aspect-ratio: 1 / 0.3295;
}

.our-analysis-content .section-title {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
}

.our-analysis-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.our-analysis-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 26px;
    margin-bottom: 15px;
}

.our-analysis-list ul li:last-child {
    margin-bottom: 0;
}

.our-analysis-list ul li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    background: url(../images/icon-sparkle.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.our-analysis-btn {
    margin-top: 40px;
}

.free-consultation-box {
    border-radius: 20px;
    padding: 60px;
    overflow: hidden;
    text-align: center;
}

.free-consultation-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -37px;
    width: 170px;
    height: 170px;
    background: url('../images/free-consultation-box-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
    animation: movestyle2 3s linear infinite alternate;
}

@keyframes movestyle2 {
    0% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(40deg);
    }
}

.free-consultation-content {
    max-width: 700px;
    margin: 0 auto;
}

.free-consultation-content .section-title p {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
}

.free-consultation-list {
    margin-top: 60px;
}

.free-consultation-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.free-consultation-list ul li {
    position: relative;
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3em;
    padding-left: 28px;
}

.free-consultation-list ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon-sparkle.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.free-consultation-btn {
    margin-top: 40px;
}

.our-team {
    padding: 120px 0 90px;
}

.team-item {
    position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
    overflow: hidden;
}

.team-item-image {
    margin-bottom: 10px;
}

.team-item-image a,
.team-item-image figure {
    display: block;
    cursor: none;
    border-radius: 10px;
    overflow: hidden;
}

.team-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.9413;
    object-fit: cover;
}

.team-item-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.team-item-content {
    width: calc(100% - 65px);
}

.team-item-content h2 {
    font-size: 22px;
}

.team-item-content h2 a {
    color: inherit;
}

.team-item-content p {
    margin: 10px 0 0;
}

.team-social-list-box {
    position: relative;
    z-index: 2;
}

.team-social-btn a {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-btn a {
    background-position: right center;
}

.team-social-btn img {
    width: 100%;
    max-width: 24px;
}

.team-item-social-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    transform: scaleX(0);
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-item-social-list {
    transform: scaleX(1);
}

.team-item-social-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-item-social-list ul li {
    margin-bottom: 15px;
}

.team-item-social-list ul li:last-child {
    margin-bottom: 0;
}

.team-item-social-list ul li a {
    position: relative;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.team-item-social-list ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.team-item-social-list ul li a:hover:before {
    transform: scale(1);
}

.team-item-social-list ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/

/*** 	 18. Services Page css    ***/

/************************************/

.page-services {
    padding: 120px 0 90px;
}

/************************************/

/*** 	 19. Service Single css	  ***/

/************************************/

.page-service-single {
    padding: 120px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.page-category-list {
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-category-list .page-category-list-title {
    font-size: 22px;
    line-height: normal;
    color: var(--primary-color);
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    padding: 15px 30px;
}

.page-category-list ul {
    list-style: none;
    margin: 0;
    padding: 40px;
}

.page-category-list ul li {
    font-family: var(--accent-font);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.4em;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a {
    position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: inherit;
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover {
    color: var(--accent-secondary-color);
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    background: url('../images/arrow-white.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transform: translate(-2px, -50%);
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover:before {
    transform: translate(0, -50%);
}

.sidebar-cta-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
    gap: 30px;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
}

.sidebar-cta-logo img {
    width: 100%;
    max-width: 154px;
}

.sidebar-cta-content h2 {
    font-size: 22px;
}

.sidebar-cta-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cta-list ul li {
    font-size: 22px;
    line-height: 1.5em;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-cta-list ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cta-list ul li img {
    width: 100%;
    max-width: 24px;
}

.sidebar-cta-list ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-list ul li a:hover {
    color: var(--accent-secondary-color);
}

.page-single-image {
    margin-bottom: 30px;
}

.page-single-image figure {
    display: block;
    border-radius: 20px;
}

.page-single-image video,
.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.5976;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.service-entry h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

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

.service-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 26px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-entry ul li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    background: url(../images/icon-sparkle.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.service-how-work-box,
.service-why-choose-box,
.service-offer-box {
    margin-top: 60px;
}

.service-how-work-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin-top: 50px;
}

.service-how-work-item {
    width: calc(33.33% - 30px);
}

.service-how-work-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    transition: all 0.4s ease-in-out;
}

.service-how-work-item:hover .icon-box {
    background-position: right center;
}

.service-how-work-item .icon-box img {
    width: 100%;
    max-width: 24px;
}

.service-why-choose-list {
    margin: 40px 0;
}

.service-why-choose-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-why-choose-list ul li {
    width: calc(50% - 7.5px);
    margin-bottom: 0;
}

.service-why-choose-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-why-choose-image {
    width: calc(50% - 15px);
}

.service-why-choose-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.service-why-choose-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.71;
    object-fit: cover;
    border-radius: 20px;
}

.service-why-choose-quote-box {
    position: relative;
    width: calc(50% - 15px);
    border-radius: 20px;
    padding: 60px 30px 30px;
}

.service-why-choose-quote-image {
    position: absolute;
    top: 30px;
    left: 30px;
}

.service-why-choose-quote-image img {
    width: 100%;
    max-width: 100px;
}

.service-why-choose-quote-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    z-index: 1;
}

.service-why-choose-quote-content h3 {
    margin-bottom: 0;
}

.service-why-choose-quote-content ul {
    border-top: 1px solid var(--dark-divider-color);
    padding: 30px 0 0;
}

.service-offer-item-list {
    margin-top: 40px;
}

.service-offer-item {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
}

.service-offer-item:last-child {
    margin-bottom: 0;
}

.service-offer-item-image figure {
    display: block;
    border-radius: 50%;
}

.service-offer-item-image figure img {
    width: 100%;
    max-width: 100px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.service-offer-item-content {
    width: calc(100% - 120px);
}

/************************************/

/*** 	 20. Blog Archive css	  ***/

/************************************/

.page-blog {
    padding: 120px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    font-family: var(--accent-font);
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/************************************/

/*** 	  21. Blog Single css	  ***/

/************************************/

.page-single-post {
    padding: 120px 0;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 20px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 1.3em;
    margin: 0 0 0.415em;
}

.post-entry h1 {
    font-size: 65px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
}

.post-entry h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: -0.02em;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol:last-child,
.post-entry ul:last-child {
    margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 10px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: var(--accent-color) url('../images/icon-blockquote.svg');
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 20px;
}

.post-entry blockquote p {
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 16px;
    line-height: 1em;
    font-weight: 500;
    text-transform: capitalize;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
    background-position: right center;
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--dark-divider-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    border-radius: 10px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.post-social-sharing ul li a:hover:before {
    transform: scale(1);
}

.post-social-sharing ul li a i {
    position: relative;
    font-size: 18px;
    color: inherit;
    z-index: 1;
}

/************************************/

/*** 	 22. Project Page css	  ***/

/************************************/

.page-projects {
    padding: 120px 0 90px;
}

.project-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
}

.project-item-image {
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.project-item-image a {
    cursor: none;
}

.project-item-image figure {
    display: block;
    border-radius: 10px;
}

.project-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.6942;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.project-item:hover .project-item-image figure img {
    transform: scale(1.06);
}

.project-item-body {
    padding: 20px;
}

.project-item-content h2 {
    font-size: 22px;
    line-height: 1.4em;
}

.project-item-content h2 a {
    color: inherit;
}

.project-item-btn {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

/************************************/

/***    23. Project Single css    ***/

/************************************/

.page-project-single {
    padding: 120px 0;
}

.project-category-list ul li {
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.project-category-list ul li span {
    font-family: var(--default-font);
    font-weight: 400;
    color: var(--text-color);
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.project-entry h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
    margin-bottom: 0;
}

.project-entry ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child {
    margin-bottom: 0;
}

.project-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.project-solution-box,
.project-overview-box {
    margin-top: 60px;
}

.project-solution-body {
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.project-solution-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.project-solution-item {
    width: calc(33.33% - 13.33px);
}

.project-solution-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    transition: all 0.4s ease-in-out;
}

.project-solution-item:hover .icon-box {
    background-position: right center;
}

.project-solution-item:hover .icon-box img {
    width: 100%;
    max-width: 24px;
}

.project-solution-list {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.project-solution-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.project-solution-list ul li {
    width: calc(33.33% - 13.33px);
    margin-bottom: 0;
}

.project-overview-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-overview-image {
    width: calc(50% - 15px);
}

.project-overview-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.project-overview-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.1752;
    object-fit: cover;
    border-radius: 20px;
}

.project-overview-item-list {
    width: calc(50% - 15px);
    align-content: center;
    border-radius: 20px;
    padding: 40px;
}

.project-overview-item {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.project-overview-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.project-overview-item p {
    margin: 0;
}

.project-overview-item ul {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

/************************************/

/*** 	   24. Team Page css	  ***/

/************************************/

.page-team {
    padding: 120px 0 90px;
}

/************************************/

/***      25. Team Single css	  ***/

/************************************/

.page-team-single {
    padding: 120px 0;
}

.team-single-image {
    position: relative;
    margin-bottom: 60px;
}

.team-single-image figure {
    display: block;
    border-radius: 20px;
}

.team-single-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.2696;
    object-fit: cover;
    border-radius: 20px;
}

.team-single-image-cta-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
}

.team-single-image-cta-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-single-image-cta-box ul li {
    line-height: 1.5em;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.team-single-image-cta-box ul li:last-child {
    margin-bottom: 0;
}

.team-single-image-cta-box ul li img {
    width: 100%;
    max-width: 20px;
}

.team-single-image-cta-box ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.team-single-image-cta-box ul li a:hover {
    color: var(--accent-secondary-color);
}

.team-member-about,
.team-member-detail-box,
.team-member-skill-box,
.team-member-experience-box {
    margin-bottom: 60px;
}

.team-member-detail-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-detail-list ul li {
    line-height: 1.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.team-member-detail-list ul li:last-child {
    border: none;
    padding: 0;
    margin: 0;
}

.team-member-detail-list ul li span {
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.team-member-skill-list {
    border-radius: 20px;
    padding: 30px;
}

.skills-progress-bar {
    margin-bottom: 40px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.skill-data .skill-title,
.skill-data .skill-no {
    font-family: var(--accent-font);
    font-size: 22px;
    line-height: normal;
    font-weight: 700;
    color: var(--primary-color);
}

.skill-progress {
    position: relative;
    background: var(--divider-color);
    border-radius: 10px;
    width: 100%;
    height: 10px;
}

.skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    border-radius: 10px;
}

.team-member-experience-list {
    border-radius: 20px;
    padding: 40px;
}

.team-member-experience-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-experience-list ul li {
    line-height: 1.5em;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.team-member-experience-list ul li:last-child {
    border-bottom: none;
    padding: 0;
    margin: 0;
}

.team-member-experience-list ul li span {
    position: relative;
    align-content: center;
}

.team-member-experience-list ul li span::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.team-member-experience-list ul li span:last-child:before {
    display: none;
}

.team-member-experience-list ul li .member-work-title,
.team-member-experience-list ul li .member-work-year {
    width: calc(30% - 20px);
}

.team-member-experience-list ul li .member-work-position {
    width: calc(40% - 20px);
    text-align: center;
}

.team-member-experience-list ul li .member-work-year {
    text-align: end;
}

/************************************/

/***   26. Testimonials Page css  ***/

/************************************/

.page-testimonials {
    padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/

/***     27. Image Gallery css    ***/

/************************************/

.page-gallery {
    padding: 120px 0 90px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.868;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/

/***     28. Video Gallery css    ***/

/************************************/

.page-video-gallery {
    padding: 120px 0 90px;
}

.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: linear-gradient(270deg, var(--accent-color) 3.49%, var(--accent-secondary-color) 97.8%);
    color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    width: 100%;
    aspect-ratio: 1 / 0.868;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/

/*** 	  29. FAQ's Page css	  ***/

/************************************/

.page-faqs {
    padding: 120px 0;
}

.page-faqs .page-single-faqs {
    margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
    margin-bottom: 0px;
}

/************************************/

/*** 	30. Contact Us Page css	  ***/

/************************************/

.page-contact-us {
    padding: 120px 0 60px;
}

.contact-us-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 20px;
}

.contact-image-box {
    position: relative;
    overflow: hidden;
    padding: 1px;
}

.contact-image-box.box-border-gradiant::before {
    background: linear-gradient(var(--secondary-color), var(--secondary-color)) padding-box, linear-gradient(0deg, var(--dark-divider-color) 0%, transparent 100%) border-box;
}

.contact-us-image figure {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.contact-us-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, var(--bg-color) 0%, transparent 91.67%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.contact-us-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 20px;
}

.contact-info-list {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 1;
}

.contact-info-item {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--bs-blue) 0%, #0045ac 50%, var(--bs-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box {
    background-position: right center;
}

.contact-info-item .icon-box img {
    width: 100%;
    max-width: 24px;
}

.contact-info-content {
    width: calc(100% - 65px);
}

.contact-info-content h3 {
    font-size: 22px;
}

.contact-info-content p {
    color: var(--primary-color);
    margin: 5px 0 0;
}

.contact-info-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.contact-info-content p a:hover {
    color: var(--accent-color);
}

.location-item {
    width: 100%;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
}

.contact-form {
    padding: 40px;
}

.contact-form-content {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.contact-form-content h3 {
    font-size: 22px;
}

.contact-form-content p {
    margin: 15px 0 0;
}

.contact-form label {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.05em;
    color: var(--primary-color);
    background-color: var(--divider-color);
    border: transparent;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.contact-form-btn .btn-default {
    width: 100%;
    text-align: center;
    padding: 17px 20px;
}

.contact-form-btn .btn-default::before {
    display: none;
}

.google-map {
    padding: 60px 0 120px;
}

.google-map-iframe {
    width: 100%;
    height: 600px;
}

.google-map-iframe iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
    filter: grayscale(0%);
}

/************************************/

/*** 	 31. 404 Error Page css	  ***/

/************************************/

.error-page {
    padding: 120px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 550px;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/

/***      32. Responsive css      ***/

/************************************/

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin: 0;
    }
    .section-content-btn .section-btn {
        margin-top: 20px;
    }
    .section-title-content {
        margin-top: 10px;
    }
    .section-btn {
        text-align: left;
        margin-top: 15px;
    }
    .section-sub-heading,
    .section-title .section-sub-title {
        margin-bottom: 10px;
    }
    .section-title p {
        margin-top: 10px;
    }
    .hero-info-item {
        width: calc(50% - 15px);
    }
    .about-us-content-box {
        gap: 60px;
        margin-top: 0;
    }
    .about-us-counter-box {
        width: calc(40% - 30px);
    }
    .about-us-counter-box::before {
        right: -30px;
    }
    .about-us-counter-box h2 {
        font-size: 170px;
    }
    .about-us-body {
        width: calc(60% - 30px);
    }
    .company-supports-slider-box {
        margin-top: 80px;
    }
    .feature-item-box {
        flex-direction: initial;
        flex-wrap: wrap;
    }
    .feature-item.box-2,
    .feature-item.box-3 {
        width: calc(50% - 15px);
    }
    .process-item-list {
        height: auto;
        margin-bottom: 30px;
    }
    .process-info-item-image figure {
        margin: 0 -30px -40px 0;
    }
    .why-choose-item-list-1,
    .why-choose-item-list-2 {
        margin: 0 0 30px;
    }
    .why-choose-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .why-choose-image {
        max-width: 410px;
        margin: 0 auto;
    }
    .impact-item {
        padding: 10px;
    }
    .impact-item-title h3 {
        font-size: 20px;
    }
    .impact-item-content p {
        padding-top: 15px;
        margin: 15px 0 0;
    }
    .what-we-image {
        height: auto;
        max-width: 740px;
        margin: 0 auto 30px;
    }
    .what-we-image figure,
    .what-we-image figure img {
        height: auto;
    }
    .what-we-image figure img {
        aspect-ratio: 1 / 0.9;
    }
    .what-we-do-content {
        height: auto;
    }
    .intro-video-box {
        min-height: 600px;
    }
    .faqs-image-box {
        height: auto;
        max-width: 740px;
        margin: 0 auto 30px;
    }
    .faqs-image-box-1,
    .faqs-image-box-1 .faqs-image,
    .faqs-image-box-1 .faqs-image figure,
    .faqs-image-box-1 .faqs-image figure img {
        height: auto;
    }
    .footer-header {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .footer-newsletter-box .footer-newsletter-title h2 {
        font-size: 38px;
    }
    .footer-links-box {
        margin-left: 30px;
    }
    .footer-links {
        max-width: 55%;
    }
    .footer-links h2 {
        margin-bottom: 20px;
    }
    .footer-links ul li {
        margin-bottom: 10px;
    }
    .footer-copyright {
        padding: 30px 0;
        margin-top: 30px;
    }
    .our-approach-content {
        height: auto;
        margin-bottom: 30px;
    }
    .approach-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .our-approach-counter-box {
        height: auto;
        margin: 0;
    }
    .approach-counter-box-image,
    .approach-counter-box-image figure,
    .approach-counter-box-image figure img {
        height: auto;
    }
    .our-analysis-image-box {
        margin: 0 auto 30px;
    }
    .page-single-sidebar {
        margin: 0;
    }
    .page-category-list .page-category-list-title {
        font-size: 20px;
        padding: 15px 20px;
    }
    .page-category-list ul,
    .sidebar-cta-box {
        padding: 20px;
    }
    .page-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .sidebar-cta-box {
        min-height: 350px;
    }
    .sidebar-cta-content h2 {
        font-size: 20px;
    }
    .sidebar-cta-list ul li {
        font-size: 20px;
        gap: 10px;
    }
    .sidebar-cta-list ul li img {
        max-width: 22px;
    }
    .page-single-image {
        margin-bottom: 20px;
    }
    .service-entry {
        margin-bottom: 40px;
    }
    .service-how-work-box,
    .service-why-choose-box,
    .service-offer-box {
        margin-top: 40px;
    }
    .service-how-work-item-list {
        gap: 20px;
        margin-top: 30px;
    }
    .service-how-work-item {
        width: calc(33.33% - 13.33px);
    }
    .service-how-work-item .icon-box {
        margin-bottom: 30px;
    }
    .service-how-work-item-content h3 {
        font-size: 20px;
    }
    .service-why-choose-list {
        margin: 30px 0;
    }
    .service-why-choose-quote-image {
        top: 20px;
        left: 20px;
    }
    .service-why-choose-quote-box {
        padding: 50px 20px 20px;
    }
    .service-why-choose-quote-content h3 {
        font-size: 20px;
    }
    .service-offer-item-list {
        margin-top: 30px;
    }
    .project-category-list ul li {
        font-size: 14px;
    }
    .project-entry {
        margin-bottom: 40px;
    }
    .project-solution-box,
    .project-overview-box {
        margin-top: 40px;
    }
    .project-solution-body {
        padding: 30px;
        margin-top: 30px;
    }
    .project-solution-item {
        width: calc(50% - 10px);
    }
    .project-solution-item .icon-box {
        margin-bottom: 30px;
    }
    .project-solution-list {
        padding-top: 30px;
        margin-top: 30px;
    }
    .project-solution-list ul li {
        width: calc(50% - 10px);
    }
    .project-overview-body {
        gap: 20px;
        margin-top: 30px;
    }
    .project-overview-image {
        width: calc(50% - 10px);
    }
    .project-overview-item-list {
        width: calc(50% - 10px);
        padding: 20px;
    }
    .project-overview-item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .project-overview-item ul {
        padding-top: 20px;
        margin-top: 20px;
    }
    .team-single-image-cta-box {
        right: 20px;
        bottom: 20px;
        left: 20px;
        padding: 20px;
    }
    .team-single-image-cta-box ul li {
        margin-bottom: 10px;
    }
    .team-single-image-cta-box ul li img {
        max-width: 18px;
    }
    .team-member-about,
    .team-member-detail-box,
    .team-member-skill-box,
    .team-member-experience-box {
        margin-bottom: 40px;
    }
    .team-member-detail-list ul li {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .team-member-experience-list {
        padding: 30px;
    }
    .team-member-experience-list ul li {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .contact-us-content {
        height: auto;
        margin: 0 0 30px;
    }
}

@media only screen and (max-width: 991px) {
    .btn-default {
        padding: 15px 50px 15px 20px;
    }
    .btn-default:hover {
        padding: 15px 20px 15px 50px;
    }
    .btn-default::before {
        width: 36px;
        height: 36px;
        background-size: 16px auto;
    }
    .btn-highlighted::after {
        width: 36px;
        height: 36px;
    }
    .navbar {
        padding: 20px 0;
    }
    .responsive-menu,
    .navbar-toggle {
        display: block;
    }
    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }
    .header-btn {
        display: none;
    }
    .light-section .container-fluid {
        padding: 0 15px;
    }
    .section-row {
        margin-bottom: 40px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-sub-heading .section-sub-title,
    .section-title .section-sub-title {
        padding: 6px 15px 6px 35px;
    }
    .section-sub-heading .section-sub-title::before,
    .section-title .section-sub-title::before {
        left: 15px;
    }
    .section-title h1 {
        font-size: 46px;
    }
    .section-title h2 {
        font-size: 38px;
    }
    .hero {
        background-size: 200% auto;
        min-height: 600px;
        padding: 180px 0 90px;
    }
    .hero-info-box {
        margin: 15px 15px 0;
    }
    .hero-info-item-list {
        gap: 15px;
    }
    .hero-info-item {
        width: calc(50% - 7.5px);
        padding: 30px;
    }
    .hero-info-item-header-content .hero-info-item-header-title {
        margin-bottom: 15px;
    }
    .hero-info-item-header-content h2 {
        font-size: 32px;
    }
    .hero-info-item-quote h3 {
        font-size: 18px;
    }
    .hero-info-item.box-4::after {
        width: 100px;
        height: 100px;
    }
    .hero-info-item.box-4 .icon-box {
        width: 50px;
        height: 50px;
    }
    .hero-info-item.box-4 .icon-box img {
        max-width: 24px;
    }
    .hero-info-item-content h3 {
        font-size: 20px;
    }
    .about-us {
        padding: 60px 0;
    }
    .about-us-content-box {
        gap: 30px;
    }
    .about-us-counter-box {
        width: 100%;
        justify-content: center;
    }
    .about-us-counter-box::before {
        display: none;
    }
    .about-us-counter-box p {
        font-size: 16px;
    }
    .about-us-body {
        width: 100%;
    }
    .about-us-content-footer {
        gap: 20px 30px;
    }
    .company-supports-slider-box {
        margin-top: 40px;
    }
    .company-supports-content {
        margin-bottom: 25px;
    }
    .our-services {
        padding: 60px 0;
    }
    .service-item-header-box {
        padding: 15px;
    }
    .service-item-header {
        margin-bottom: 15px;
    }
    .service-item-header .icon-box {
        width: 50px;
        height: 50px;
    }
    .service-item-header .icon-box img {
        max-width: 24px;
    }
    .service-item-title {
        width: calc(100% - 65px);
    }
    .service-item-title h2 {
        font-size: 20px;
    }
    .service-item-content ul {
        padding: 15px 0 0;
        margin: 15px 0 0;
    }
    .service-item-content ul li {
        margin-bottom: 10px;
    }
    .section-footer-text,
    .section-footer-text ul {
        margin-top: 10px;
    }
    .our-features {
        padding: 60px 0;
    }
    .feature-item {
        padding: 30px;
    }
    .feature-item-content h3 {
        font-size: 20px;
    }
    .feature-item.box-1 .feature-item-image {
        margin-bottom: 20px;
    }
    .feature-item.box-1 .feature-item-image figure {
        margin: 0 -30px -20px;
    }
    .feature-item-list ul li {
        font-size: 14px;
        padding-left: 24px;
    }
    .feature-item-list ul li::before {
        width: 14px;
        height: 14px;
    }
    .feature-item-btn {
        margin-top: 30px;
    }
    .feature-item.box-2 .feature-item-image figure {
        margin: 0 -44px -30px -40px;
    }
    .feature-client-box {
        padding-top: 15px;
        margin-top: 15px;
    }
    .feature-video-content-box {
        padding: 20px;
    }
    .feature-item.box-4 .feature-item-btn {
        padding-top: 15px;
        margin-top: 15px;
    }
    .our-process {
        padding: 60px 0;
    }
    .process-item-content h3 {
        font-size: 20px;
    }
    .process-item-body {
        padding: 20px 30px 20px 20px;
    }
    .process-info-item {
        padding: 30px;
    }
    .process-info-item-title {
        margin-bottom: 30px;
    }
    .process-info-item-title h3 {
        font-size: 26px;
    }
    .process-info-counter-item h2 {
        font-size: 38px;
    }
    .process-info-item-btn {
        margin-top: 30px;
    }
    .process-info-item-image figure {
        margin: 0 -20px -30px 0;
    }
    .why-choose-us {
        padding: 60px 0;
    }
    .why-choose-item-title h3 {
        font-size: 20px;
    }
    .why-choose-us .section-footer-text {
        margin-top: 40px;
    }
    .our-impact {
        padding: 60px 0;
    }
    .impact-item-image figure img {
        aspect-ratio: 1 / 0.95;
    }
    .impact-item-content ul li {
        padding: 6px 14px 6px 36px;
    }
    .impact-item-content ul li::before {
        left: 16px;
    }
    .what-we-do {
        padding: 60px 0;
    }
    .what-we-item-content h3 {
        font-size: 20px;
    }
    .what-we-content-btn {
        margin-top: 30px;
    }
    .intro-video .container-fluid {
        padding: 0;
    }
    .intro-video-box .video-play-button a {
        font-size: 18px;
        width: 80px;
        height: 80px;
    }
    .our-testimonial {
        padding: 60px 0;
    }
    .testimonial-item {
        min-height: auto;
        padding: 30px;
    }
    .testimonial-author-content h2 {
        font-size: 18px;
    }
    .our-testimonial .section-footer-text {
        margin-top: 40px;
    }
    .our-faqs {
        padding: 60px 0;
    }
    .faqs-counter-box h2 {
        font-size: 44px;
    }
    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }
    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding: 16px 50px 16px 20px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after,
    .faq-accordion .accordion-item .accordion-button::before,
    .faq-accordion .accordion-item .accordion-button.collapsed::before {
        right: 20px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 16px 20px;
    }
    .our-blog {
        padding: 60px 0 30px;
    }
    .post-item {
        min-height: 400px;
        padding: 30px;
    }
    .post-item-tag a {
        font-size: 14px;
        padding: 6px 16px 6px 36px;
    }
    .post-item-tag a::before {
        left: 14px;
    }
    .post-item-content h2 {
        font-size: 20px;
    }
    .post-item-btn {
        padding-top: 15px;
        margin-top: 15px;
    }
    .main-footer {
        padding: 50px 0 0;
    }
    .footer-contact-list {
        max-width: 75%;
    }
    .footer-contact-item-content h2 {
        font-size: 20px;
    }
    .footer-newsletter-box {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .footer-newsletter-box .footer-newsletter-title {
        margin-bottom: 20px;
    }
    .footer-newsletter-form {
        max-width: 100%;
    }
    .footer-newsletter-form h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .footer-newsletter-form .form-group .form-control {
        width: calc(100% - 40px);
    }
    .footer-newsletter-form .form-group .newsletter-btn {
        width: 40px;
        height: 40px;
    }
    .footer-newsletter-form .form-group .newsletter-btn i {
        font-size: 20px;
    }
    .footer-links-box {
        margin: 0;
    }
    .footer-links {
        width: calc(50% - 15px);
        max-width: 100%;
    }
    .footer-links h2 {
        font-size: 20px;
    }
    .page-header {
        background-size: 100% auto;
        padding: 170px 0 90px;
    }
    .page-header-box h1 {
        font-size: 46px;
    }
    .our-approach {
        padding: 60px 0;
    }
    .approach-item-content h3 {
        font-size: 20px;
    }
    .approach-counter-box-header {
        padding: 10px 10px 30px;
    }
    .approach-counter-item-list {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .approach-counter-item h2 {
        font-size: 34px;
    }
    .our-analysis {
        padding: 60px 0;
    }
    .analysis-info-title h3 {
        font-size: 20px;
    }
    .our-analysis-content .section-title {
        padding-bottom: 30px;
    }
    .our-analysis-list ul li {
        margin-bottom: 10px;
    }
    .our-analysis-btn {
        margin-top: 30px;
    }
    .free-consultation-box {
        padding: 60px 15px;
    }
    .free-consultation-box::after {
        bottom: -20px;
        left: -25px;
        width: 130px;
        height: 130px;
    }
    .free-consultation-list {
        margin: 0;
    }
    .free-consultation-list ul {
        gap: 20px 40px;
    }
    .free-consultation-list ul li {
        font-size: 20px;
    }
    .free-consultation-btn {
        margin-top: 30px;
    }
    .our-team {
        padding: 60px 0 30px;
    }
    .team-item {
        padding: 10px;
    }
    .team-item-content h2 {
        font-size: 20px;
    }
    .team-item-content p {
        margin: 5px 0 0;
    }
    .team-item-social-list {
        margin-bottom: 10px;
    }
    .team-item-social-list ul li {
        margin-bottom: 10px;
    }
    .page-services {
        padding: 60px 0 30px;
    }
    .page-service-single {
        padding: 60px 0;
    }
    .page-single-sidebar {
        position: initial;
        margin-bottom: 30px;
    }
    .page-category-list {
        margin-bottom: 30px;
    }
    .sidebar-cta-box {
        min-height: 300px;
    }
    .sidebar-cta-list ul li {
        margin-bottom: 15px;
    }
    .service-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .service-entry h3 {
        font-size: 20px;
    }
    .service-entry p {
        margin-bottom: 15px;
    }
    .service-entry ul li {
        margin-bottom: 10px;
    }
    .service-why-choose-list ul li {
        margin-bottom: 0;
    }
    .service-offer-item {
        margin-bottom: 30px;
    }
    .service-offer-item-image figure img {
        max-width: 80px;
    }
    .service-offer-item-content {
        width: calc(100% - 100px);
    }
    .page-blog {
        padding: 60px 0;
    }
    .page-pagination {
        margin-top: 10px;
    }
    .page-single-post {
        padding: 60px 0;
    }
    .post-image {
        margin-bottom: 20px;
    }
    .post-entry h2 {
        font-size: 38px;
    }
    .post-entry p {
        margin-bottom: 15px;
    }
    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
    }
    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 35px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 15px;
    }
    .post-entry blockquote p {
        font-size: 20px;
    }
    .post-tags {
        margin-bottom: 20px;
    }
    .post-tags .tag-links a {
        padding: 12px 15px;
    }
    .post-social-sharing ul {
        text-align: left;
    }
    .page-projects {
        padding: 60px 0 30px;
    }
    .project-item-body {
        padding: 10px;
    }
    .project-item-content h2 {
        font-size: 20px;
    }
    .project-item-btn {
        padding-top: 20px;
        margin-top: 20px;
    }
    .page-project-single {
        padding: 60px 0;
    }
    .project-entry p {
        margin-bottom: 15px;
    }
    .project-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .project-entry h3 {
        font-size: 20px;
    }
    .project-entry ul li {
        margin-bottom: 10px;
    }
    .project-entry ul li::before {
        font-size: 16px;
    }
    .project-solution-list ul li {
        margin-bottom: 0;
    }
    .page-team {
        padding: 60px 0 30px;
    }
    .page-team-single {
        padding: 60px 0;
    }
    .team-single-image {
        margin-bottom: 30px;
    }
    .team-single-image figure img {
        aspect-ratio: 1 / 0.8;
    }
    .team-member-detail-list ul li span {
        font-size: 20px;
    }
    .skills-progress-bar {
        margin-bottom: 30px;
    }
    .skillbar .skill-data {
        margin-bottom: 15px;
    }
    .skill-data .skill-title,
    .skill-data .skill-no {
        font-size: 20px;
    }
    .page-testimonials {
        padding: 60px 0 30px;
    }
    .page-gallery {
        padding: 60px 0 30px;
    }
    .page-video-gallery {
        padding: 60px 0 30px;
    }
    .page-faqs {
        padding: 60px 0;
    }
    .page-faqs .page-single-faqs {
        margin-bottom: 40px;
    }
    .page-contact-us {
        padding: 60px 0 30px;
    }
    .contact-info-list {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }
    .contact-info-content h3 {
        font-size: 20px;
    }
    .contact-form {
        padding: 30px;
    }
    .contact-form-content {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .contact-form-content h3 {
        font-size: 20px;
    }
    .contact-form-content p {
        margin: 10px 0 0;
    }
    .contact-form-btn .btn-default {
        padding: 15px 20px;
    }
    .google-map {
        padding: 30px 0 60px;
    }
    .google-map-iframe {
        height: 450px;
    }
    .error-page {
        padding: 60px 0px;
    }
    .error-page-image {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px;
    }
    .section-sub-heading .section-sub-title,
    .section-title .section-sub-title {
        font-size: 14px;
    }
    .section-title h1 {
        font-size: 28px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .hero {
        min-height: auto;
        background-position: center center;
        padding-bottom: 30px;
    }
    .hero-content-btn {
        gap: 20px;
    }
    .hero-info-item {
        width: 100%;
        padding: 20px;
    }
    .hero-info-item.box-1 {
        padding: 20px;
    }
    .hero-info-item-header-content .hero-info-item-header-title {
        margin-bottom: 10px;
    }
    .hero-info-item-header-content h2 {
        font-size: 28px;
    }
    .hero-info-item.box-2 {
        padding: 20px 15px 0;
    }
    .hero-info-item-quote::before {
        top: 0;
        left: 0;
        width: 50px;
        height: 36px;
    }
    .hero-info-item-quote h3 {
        font-size: 16px;
    }
    .hero-info-item-content h3 {
        font-size: 18px;
    }
    .hero-info-item-content p {
        margin: 5px 0 0;
    }
    .about-us-counter-box {
        gap: 15px;
    }
    .about-us-counter-box h2 {
        font-size: 120px;
    }
    .about-us-counter-box p {
        font-size: 14px;
    }
    .about-us-content h3 {
        font-size: 18px;
    }
    .about-us-content p {
        margin: 15px 0 0;
    }
    .company-supports-content {
        gap: 10px;
    }
    .company-supports-logo img {
        max-width: 140px;
    }
    .service-item-header-box {
        padding: 10px;
    }
    .service-item-title h2 {
        font-size: 18px;
    }
    .section-footer-text ul li {
        font-size: 14px;
        margin-right: 5px;
    }
    .feature-item {
        padding: 20px;
    }
    .feature-item-content h3 {
        font-size: 18px;
    }
    .feature-item.box-1 .feature-item-image figure {
        margin: 0 -20px -20px;
    }
    .feature-item-list ul {
        gap: 10px 15px;
    }
    .feature-item.box-2,
    .feature-item.box-3 {
        width: 100%;
        height: auto;
    }
    .feature-item-btn {
        margin-top: 20px;
    }
    .feature-item.box-2 .feature-item-image figure {
        margin: 0 -34px -20px -40px;
    }
    .feature-item.box-4 {
        min-height: 350px;
    }
    .process-item {
        width: 100%;
        padding: 20px;
    }
    .process-item-content h3 {
        font-size: 18px;
    }
    .process-item-image-box {
        padding: 10px;
    }
    .process-item-body {
        width: 100%;
        padding: 10px 10px 20px;
    }
    .process-item-image {
        width: 100%;
    }
    .process-info-item {
        padding: 20px;
    }
    .process-info-item-body {
        width: 80%;
    }
    .process-info-item-title h3 {
        font-size: 20px;
    }
    .process-info-counter-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .process-info-counter-item h2 {
        font-size: 26px;
    }
    .process-info-item-image {
        width: 20%;
    }
    .process-info-item-image figure {
        margin: 0 -10px -20px -40px;
    }
    .why-choose-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .why-choose-item-list-1 {
        border-bottom: 1px solid var(--dark-divider-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .why-choose-item-title h3 {
        font-size: 18px;
    }
    .why-choose-item-content {
        margin-top: 10px;
    }
    .why-choose-image figure {
        max-width: 100%;
    }
    .why-choose-image figure::before {
        height: 345px;
    }
    .why-choose-image figure img {
        max-width: 250px;
    }
    .impact-item {
        gap: 10px;
    }
    .impact-item-image {
        width: 100%;
        height: auto;
    }
    .impact-item-image figure,
    .impact-item-image figure img {
        height: auto;
    }
    .impact-item-body {
        width: 100%;
    }
    .impact-item-title h3 {
        font-size: 18px;
    }
    .what-we-image figure::before {
        width: 89px;
        height: 85px;
    }
    .what-we-item-list {
        width: 100%;
    }
    .what-we-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .what-we-item-content h3 {
        font-size: 18px;
    }
    .what-we-body-image {
        max-width: 100%;
    }
    .what-we-body-image figure {
        height: auto;
    }
    .what-we-body-image figure img {
        height: auto;
        aspect-ratio: 1 / 0.8;
    }
    .intro-video-box {
        min-height: 350px;
    }
    .testimonial-item {
        gap: 20px;
        padding: 20px;
    }
    .testimonial-item-rating {
        margin-bottom: 10px;
    }
    .testimonial-item-content p {
        font-size: 16px;
    }
    .testimonial-item-author {
        padding-top: 20px;
    }
    .faqs-image-box-1 .faqs-image figure {
        margin-right: -80px;
    }
    .faqs-image figure {
        border-width: 5px;
    }
    .faqs-image-box-2 .faqs-image figure {
        border-width: 5px;
        margin: 0;
    }
    .faqs-counter-box {
        border-width: 5px;
        border-radius: 20px;
        margin-top: -50px;
        padding: 10px;
    }
    .faqs-counter-box h2 {
        font-size: 28px;
    }
    .faqs-counter-box p {
        font-size: 14px;
    }
    .faq-accordion .accordion-item {
        margin-bottom: 15px;
    }
    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 40px 15px 15px;
    }
    .faq-accordion .accordion-item .accordion-button::before,
    .faq-accordion .accordion-item .accordion-button.collapsed::before {
        right: 15px;
        width: 20px;
        height: 20px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 15px;
        width: 20px;
        height: 20px;
        background-size: 12px auto;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 12px 15px;
    }
    .post-item {
        min-height: 350px;
        padding: 20px;
    }
    .post-item-content h2 {
        font-size: 18px;
    }
    .footer-contact-list {
        max-width: 100%;
    }
    .footer-contact-item {
        width: 100%;
        gap: 10px;
    }
    .footer-contact-item .icon-box img {
        max-width: 40px;
    }
    .footer-contact-item-content {
        width: calc(100% - 50px);
    }
    .footer-contact-item-content h2 {
        font-size: 18px;
    }
    .footer-newsletter-box .footer-newsletter-title h2 {
        font-size: 26px;
    }
    .footer-newsletter-form h3 {
        font-size: 18px;
    }
    .footer-links {
        width: auto;
        max-width: 100%;
    }
    .footer-links h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-copyright {
        padding: 15px 0;
    }
    .footer-copyright-box {
        gap: 10px;
        justify-content: center;
    }
    .footer-social-links ul li a {
        width: 36px;
        height: 36px;
    }
    .footer-social-links ul li a i {
        font-size: 16px;
    }
    .page-header {
        background-size: 150% auto;
    }
    .page-header-box h1 {
        font-size: 28px;
    }
    .approach-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .approach-item-content h3 {
        font-size: 18px;
    }
    .approach-item-content p {
        margin: 5px 0 0;
    }
    .our-approach-counter-box {
        padding: 10px;
    }
    .approach-counter-box-header {
        padding: 10px 10px 15px;
    }
    .approach-counter-item-list {
        gap: 15px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .approach-counter-item {
        width: calc(33.33% - 10px);
    }
    .approach-counter-item::before {
        right: -7.5px;
    }
    .approach-counter-item h2 {
        font-size: 28px;
    }
    .approach-counter-item p {
        font-size: 14px;
    }
    .our-analysis-image-box {
        padding: 10px;
    }
    .analysis-info-box {
        width: 100%;
        gap: 15px;
        padding: 20px;
    }
    .analysis-info-title h3 {
        font-size: 18px;
    }
    .analysis-image {
        padding: 10px;
    }
    .analysis-image-box-1 .analysis-image {
        width: 100%;
        padding: 20px 10px 0;
    }
    .free-consultation-box::after {
        bottom: -15px;
        left: -20px;
        width: 100px;
        height: 100px;
    }
    .free-consultation-list ul {
        gap: 15px;
    }
    .free-consultation-list ul li {
        font-size: 16px;
    }
    .team-item-content h2 {
        font-size: 18px;
    }
    .page-category-list .page-category-list-title {
        font-size: 18px;
    }
    .sidebar-cta-content h2 {
        font-size: 18px;
    }
    .sidebar-cta-list ul li {
        font-size: 18px;
    }
    .page-single-image video,
    .page-single-image img {
        aspect-ratio: 1 / 0.66;
    }
    .service-entry h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .service-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .service-how-work-item {
        width: 100%;
    }
    .service-how-work-item .icon-box {
        margin-bottom: 20px;
    }
    .service-why-choose-list ul li {
        width: 100%;
    }
    .service-why-choose-image,
    .service-why-choose-quote-box {
        width: 100%;
    }
    .service-why-choose-quote-content {
        gap: 20px;
    }
    .service-why-choose-quote-content h3 {
        margin-bottom: 0;
    }
    .service-why-choose-quote-content ul {
        padding-top: 20px;
    }
    .service-offer-item-content {
        width: 100%;
    }
    .post-single-meta ol li,
    .post-single-meta ol li i {
        font-size: 16px;
    }
    .post-image img {
        aspect-ratio: 1 / 0.7;
    }
    .post-entry blockquote {
        background-size: 30px auto;
        padding: 55px 20px 20px 20px;
    }
    .post-entry blockquote p {
        font-size: 16px;
    }
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.58em;
    }
    .post-entry h2 {
        font-size: 26px;
    }
    .tag-links {
        font-size: 18px;
    }
    .project-item-content h2 {
        font-size: 18px;
    }
    .project-item-btn {
        padding-top: 15px;
        margin-top: 15px;
    }
    .project-entry h2 {
        font-size: 26px;
    }
    .project-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .project-solution-body {
        padding: 20px;
    }
    .project-solution-item-list {
        gap: 20px;
    }
    .project-solution-item {
        width: 100%;
    }
    .project-solution-item .icon-box {
        margin-bottom: 20px;
    }
    .project-solution-list ul {
        gap: 10px;
    }
    .project-solution-list ul li {
        width: 100%;
    }
    .project-overview-image {
        width: 100%;
    }
    .project-overview-image figure,
    .project-overview-image figure img {
        height: auto;
    }
    .project-overview-image figure img {
        aspect-ratio: 1 / 1;
    }
    .project-overview-item-list {
        width: 100%;
    }
    .project-overview-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .project-overview-item ul {
        padding-top: 15px;
        margin-top: 15px;
    }
    .team-single-image figure img {
        aspect-ratio: 1 / 1.2696;
    }
    .team-member-detail-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .team-member-detail-list ul li span {
        font-size: 18px;
    }
    .team-member-skill-list {
        padding: 20px;
    }
    .skills-progress-bar {
        margin-bottom: 20px;
    }
    .skillbar .skill-data {
        margin-bottom: 10px;
    }
    .skill-data .skill-title,
    .skill-data .skill-no {
        font-size: 16px;
    }
    .team-member-experience-list {
        padding: 20px;
    }
    .team-member-experience-list ul li {
        font-size: 14px;
        gap: 20px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .team-member-experience-list ul li span::before {
        right: -10px;
    }
    .team-member-experience-list ul li .member-work-title,
    .team-member-experience-list ul li .member-work-year {
        width: calc(30% - 13.33px);
    }
    .team-member-experience-list ul li .member-work-position {
        width: calc(40% - 13.33px);
    }
    .contact-us-image figure img {
        aspect-ratio: 1 / 1.2;
    }
    .contact-info-list {
        right: 15px;
        bottom: 15px;
        left: 15px;
        gap: 15px;
    }
    .contact-info-item {
        width: 100%;
    }
    .location-item {
        padding-top: 15px;
    }
    .contact-info-content h3 {
        font-size: 18px;
    }
    .contact-form {
        padding: 20px;
    }
    .contact-form-content h3 {
        font-size: 18px;
    }
    .google-map-iframe {
        height: 350px;
    }
}





  :root{
    --bg-deep:#0A0F1E;
    --bg-panel:#0F1830;
    --bg-panel-raised:#141F3D;
    --accent-cobalt:#3B6FEF;
    --accent-cyan:#5FC4E8;
    --accent-gold:#E8B85C;
    --text-hi:#F1F5FB;
    --text-mid:#B7C4DE;
    --text-low:#7488AA;
    --radius:14px;
  }

.section {
    position: relative;
    z-index: 1;
    padding: 110px 0;
    overflow: hidden;
}

.container-narrow {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 24px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
}
.join-panel {
    background: linear-gradient(160deg, var(--bg-panel-raised), var(--bg-panel));
    border: 1px solid rgb(140 166 224 / 66%);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
}
.join-panel::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 111, 239, 0.25), transparent 70%);
    top: -160px;
    right: -120px;
    filter: blur(10px);
    animation: heroGlowPulse 6s ease-in-out infinite;
}
.section-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    display: block;
}
.section h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 600;
    max-width: 640px;
}

.join-form-input {
    background: var(--bg-deep);
    border: 1px solid var(--line);
    color: var(--text-hi);
    border-radius: 9px;
    padding: 12px 16px;
    font-size: 0.95rem;
}
.btn-vault {
    background: var(--accent-cobalt);
    color: #fff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 0 0 rgba(59, 111, 239, 0);
}

.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d6efd0f;
    border: 1px solid #0d6efd4f;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 600;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}
.stat:last-child {
    align-items: flex-end;
}
.stat .label {
    font-size: 11px;
    font-weight: 500;
    color: #9aa0b4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.stat .value {
    color: #9aa0b4;
}
.stat.right .value {
    color: var(--gain);
}

.links {
    margin-top: 22px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.9;
    text-align: center;
}
.links a {
    color: #30c3fd;
    font-weight: 600;
    text-decoration: none;
}


.mesh-wrap{
    position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden;
  }
  .blob{
    position:absolute; border-radius:50%; filter:blur(70px); opacity:0.28;
    will-change:transform;
  }
  .blob-a{
    width:520px; height:520px; top:-160px; left:-120px;
    background:radial-gradient(circle, var(--accent-cobalt), transparent 70%);
  }
  .blob-b{
    width:460px; height:460px; top:60px; right:-160px;
    background:radial-gradient(circle, var(--accent-cyan), transparent 70%);
  }
  .blob-c{
    width:380px; height:380px; top:520px; left:38%;
    background:radial-gradient(circle, var(--accent-gold), transparent 72%);
    opacity:0.14;
  }






  :root{
    --bg-deep:#080e24;
    --bg-surface:#0f1a3d;
    --bg-surface-2:#131f49;
    --line: rgba(140,166,224,0.18);
    --accent-blue:#3d8bff;
    --accent-cyan:#5fe1e6;
    --text-main:#e8edfb;
    --text-muted:#8fa3c7;
    --success:#34d399;
    --pending:#f7b955;
    --radius: 14px;
  }

    .heros{
    padding:96px 0 64px;
    text-align:center;
  }
  .badge{
    display:inline-flex; align-items:center; gap:8px;
    padding:7px 16px; border-radius:999px;
    border:1px solid rgba(95,225,230,0.35);
    background:rgba(95,225,230,0.06);
    font-family:'IBM Plex Mono', monospace;
    font-size:0.75rem; color:var(--accent-cyan);
    letter-spacing:0.04em;
    margin-bottom:28px;
  }
  .badge .dot{
    width:6px; height:6px; border-radius:50%;
    background:var(--accent-cyan);
    box-shadow:0 0 8px var(--accent-cyan);
  }
  .heros h1{
    font-size:clamp(2.1rem, 5vw, 3.6rem);
    font-weight:700; line-height:1.12;
    max-width:820px; margin:0 auto;
  }
  .heros h1 .grad{
    background:linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .heros p{
    max-width:600px; margin:24px auto 0;
    color:#ffffff; font-size:1.02rem;
  }
  .heros-ctas{
    display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
    margin-top:36px;
  }
  .btn{
    padding:13px 26px; border-radius:9px;
    font-weight:600; font-size:0.95rem;
    border:1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    cursor:pointer;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{
    background:linear-gradient(90deg, var(--accent-blue), #2f6fe0);
    color:#04122b;
    box-shadow:0 8px 24px rgba(61,139,255,0.28);
  }
  .btn-secondary{
    background:var(--bg-surface);
    border-color:var(--line);
    color:var(--text-main);
  }
  .btn-ghost{
    background:transparent;
    border-color:rgba(95,225,230,0.4);
    color:var(--accent-cyan);
  }

  /* trust strip */
  .trust{
    margin:64px auto 0; max-width:960px;
    border:1px solid var(--line); border-radius:var(--radius);
    background:linear-gradient(180deg, rgba(19,31,73,0.6), rgba(15,26,61,0.4));
    padding:28px 20px;
  }
  .trust-label{
    text-align:center; color:#ffffff;
 font-size:0.72rem;
    letter-spacing:0.12em; text-transform:uppercase;
    margin-bottom:22px;
  }
  .trust-grid{
    display:grid; grid-template-columns:repeat(4, 1fr);
    gap:16px; text-align:center;
  }
  .trust-grid .num{
 font-weight:700;
    font-size:1.5rem; color:var(--accent-cyan);
  }
  .trust-grid .lbl{ color:#ffffff; font-size:0.8rem; margin-top:4px; }

  /* ---------- ROADMAP ---------- */
  .roadmap{ padding:96px 0 120px; }
  .section-head{ text-align:center; max-width:640px; margin:0 auto 64px; }
  .section-head .eyebrow{ display:block; margin-bottom:14px; }
  .section-head h2{ font-size:clamp(1.8rem, 4vw, 2.4rem); font-weight:700; }
  .section-head p{ color:var(--text-muted); margin-top:14px; font-size:0.98rem; }

  .track{
    position:relative;
  }
  .track-line{
    position:absolute; top:19px; left:0; right:0; height:2px;
    background:linear-gradient(90deg,
      var(--success) 0%, var(--success) 22%,
      var(--accent-blue) 22%, var(--accent-blue) 55%,
      var(--line) 55%, var(--line) 100%);
    z-index:0;
  }
  .phases{
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
    position:relative; z-index:1;
  }
  .phase{
    background: linear-gradient(45deg, #001c45, transparent);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .phase.is-complete{ border-color:rgba(52,211,153,0.4); }
  .phase.is-active{ border-color:rgba(61,139,255,0.5); box-shadow:0 0 0 1px rgba(61,139,255,0.15), 0 12px 32px rgba(61,139,255,0.12); }

  .node{
    width:12px; height:12px; border-radius:50%;
    margin-bottom:2px;
  }
  .is-complete .node{ background:var(--success); box-shadow:0 0 10px rgba(52,211,153,0.6); }
  .is-active .node{ background:var(--accent-blue); box-shadow:0 0 10px rgba(61,139,255,0.6); }
  .is-upcoming .node{ background:var(--text-muted); opacity:0.5; }

  .phase-status{
font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #caddff;
  }
  .is-complete .phase-status{ color:var(--success); }
  .is-active .phase-status{ color:var(--accent-blue); }

  .phase h3{ font-size:1.2rem; font-weight:600; }

  .phase ul{ list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:2px;padding:0 }
  .phase li{
    display:flex; align-items:flex-start; gap:8px;
    font-size:0.88rem; color:var(--text-muted); padding: 0;
  }
  .phase li::before{
    content:"✓"; flex-shrink:0; margin-top:1px;
    font-size:0.72rem; width:15px; height:15px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:rgba(52,211,153,0.14); color:var(--success);
  }
  .is-upcoming li::before{
    content:"•"; background:rgba(143,163,199,0.14); color:var(--text-muted);
  }

  footer{
    border-top:1px solid var(--line);
    padding:32px 0; text-align:center;
    color:var(--text-muted); font-size:0.82rem;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 860px){
    .trust-grid{ grid-template-columns:repeat(2,1fr); row-gap:24px; }
    .phases{ grid-template-columns:repeat(2,1fr); }
    .track-line{ display:none; }
  }

  @media (max-width: 640px){
    .nav-links{ display:none; }
    .heros{ padding:72px 0 48px; }
    .heros p{ padding:0 8px; }
    .phases{ grid-template-columns:1fr; }
    .trust{ padding:22px 16px; }
  }