:root {
    --primary-color: #FFFFFF;
    --secondary-color: #FFFFFF0A;
    --text-color: #D1D1D1;
    --bg-color: #1C1B2B;
    --accent-color: #4185DD;
    --accent-secondary-color: #B42FDA;
    --divider-color: #FFFFFF0A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Poppins", sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);

    /* Professional Glass Theme (From Free Assessment) */
    --pro-glass-bg: rgba(15, 20, 50, 0.75);
    --pro-border-color: rgba(0, 162, 255, 0.3);
    --pro-glass-shadow: 0 0 40px rgba(0, 162, 255, 0.2);
}

.pro-glass-card {
    background: var(--pro-glass-bg) !important;
    border: 1px solid var(--pro-border-color) !important;
    border-radius: 20px !important;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--pro-glass-shadow) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Ensure uniform height in grids */
}

.pro-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 50px rgba(0, 162, 255, 0.4) !important;
}

/* Force text colors inside glass cards */
.pro-glass-card h3,
.pro-glass-card h4,
.pro-glass-card h5 {
    color: #ffffff !important;
}

.pro-glass-card p {
    color: #c0c8e7 !important;
}


body {
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1em;
    color: var(--text-color);
    background-color: #0a0427;
}

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

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

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

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

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

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

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;
}

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

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    z-index: 1;
}

.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;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 100px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 16px 30px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

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

.btn-default.btn-highlighted {
    background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box, linear-gradient(to left, var(--accent-color), var(--accent-secondary-color)) border-box;
    border: 1px solid transparent;
}

.btn-default.btn-highlighted::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: linear-gradient(to left, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default.btn-highlighted:hover::before {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.readmore-btn {
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    color: var(--accent-secondary-color);
}

.readmore-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    transform: translateX(-3px);
    background: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::after {
    transform: translateX(0);
}

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

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 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-color) transparent var(--accent-secondary-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);
    }
}

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

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

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

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

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
    background: var(--secondary-color) url('../images/icon-sub-heading.svg') no-repeat;
    background-position: left 20px center;
    background-size: 20px auto;
    border-left: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-secondary-color);
    border-top: none;
    border-bottom: none;
    border-radius: 100px;
    padding: 8px 20px 8px 50px;
    margin-bottom: 20px;
}

.section-title h1 {
    font-size: 52px;
    line-height: 1.1em;
    font-weight: 300;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h1 span,
.section-title h2 span {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.section-title:hover h1 span,
.section-title:hover h2 span {
    background-position: right center;
}

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

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

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

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

.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;
}



header.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

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

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

.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 20px;
}

.main-menu .nav-menu-wrapper .navbar-nav {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 0 10px;
}

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

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

.main-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    padding: 11px 20px !important;
    margin: 10px 0;
    border-radius: 100px;
    color: var(--text-color);
    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(--primary-color);
    background: var(--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(110deg, var(--accent-color) 0.03%, var(--accent-secondary-color) 100%);
    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;
    margin: 0;
    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 {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open {
    background-position: right center;
}

.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);
    background-color: var(--primary-color);
}

.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);
    background-color: var(--primary-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: linear-gradient(110deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
}

.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: 500;
    text-transform: capitalize;
    padding: 6px 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: 6px 20px 6px 30px;
}

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

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    position: absolute;
    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);
}




.hero {
    position: relative;
    background: url('../images/hero-bg-shape.png') no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 250px 0 140px;
    z-index: 1;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    --grid-line-color: var(--divider-color);
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 0;
}

.grid-line-5,
.grid-line-4,
.grid-line-3,
.grid-line-2,
.grid-line-1 {
    position: relative;
    height: 100%
}

.grid-line-5:before,
.grid-line-4:before,
.grid-line-3:before,
.grid-line-2:before,
.grid-line-1:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    right: -1px;
    background: var(--grid-line-color);
    width: 1px;
}

.grid-line-5:after,
.grid-line-4:after,
.grid-line-3:after,
.grid-line-2:after,
.grid-line-1:after {
    content: "";
    position: absolute;
    top: -80px;
    right: -1px;
    background: linear-gradient(254deg, transparent 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    border-radius: 0;
    opacity: 50%;
    width: 1px;
    height: 60px;
}

.grid-lines .grid-line-1:after {
    animation: gridline 6s linear infinite
}

.grid-lines .grid-line-2:after {
    animation: gridline 10s linear infinite;
    animation-delay: 3s
}

.grid-lines .grid-line-3:after {
    animation: gridline 8s linear infinite;
    animation-delay: 6s
}

.grid-lines .grid-line-4:after {
    animation: gridline 12s linear infinite;
    animation-delay: 4s
}

.grid-lines .grid-line-5:after {
    animation: gridline 9s linear infinite;
    animation-delay: 8s
}

@keyframes gridline {
    0% {
        top: -50px
    }

    to {
        top: 100%;
    }
}

.hero.hero-bg-image {
    position: relative;
    background: url('../images/hero-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 250px 0 140px;
}

.hero.hero-bg-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    opacity: 90%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

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

.hero.hero-bg-image.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
    position: relative;
    padding: 250px 0 140px;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    opacity: 90%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

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

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: center;
    z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

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

.hero-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.hero-company-slider {
    margin-top: 160px;
    text-align: center;
}

.hero-company-slider p {
    margin-bottom: 30px;
}

.hero-company-slider .company-logo {
    text-align: center;
}

.hero-company-slider .company-logo img {
    width: 100%;
    max-height: 40px;
}



.our-scrolling-ticker {
    position: relative;
    background-color: var(--secondary-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 25px 0;
    z-index: 1;
}

.scrolling-ticker-box {
    --gap: 20px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 40s linear infinite;
}

.scrolling-content span {
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--primary-color);
}

.scrolling-content span img {
    width: 100%;
    max-width: 30px;
    margin-right: 20px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}



.about-us {
    position: relative;
    padding: 180px 0 90px;
    z-index: 1;
}

.about-us::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 50%;
    background: url(../images/section-bg-shape-1.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes circlerotate {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-150px) rotate(360deg);
    }
}

.about-counter-box {
    text-align: center;
}

.about-counter-box h2 {
    font-size: 200px;
    line-height: 1em;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
    margin-bottom: 5px;
}

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

.about-counter-box p {
    display: inline-block;
    text-transform: capitalize;
    background-color: var(--secondary-color);
    border-radius: 100px;
    padding: 12px 20px;
    margin-bottom: 0;
}

.about-us-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
}

.about-list-item {
    width: calc(50% - 20px);
}

.about-list-item img {
    width: 100%;
    max-width: 50px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.about-list-item:hover img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.about-list-item h3 {
    font-size: 20px;
    line-height: 1.4em;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-list-item p {
    margin-bottom: 0;
}

.about-us-body {
    margin-top: 60px;
}

.about-us-body p {
    margin-bottom: 0;
}



.our-services {
    position: relative;
    padding: 90px 0 60px;
    z-index: 1;
}

.our-services::before {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 200px;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: squrerotate 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes squrerotate {
    0% {
        transform: translate(0, 0px) rotate(0deg);
    }

    50% {
        transform: translate(150px, 150px) rotate(180deg);
    }

    100% {
        transform: translate(0px, 300px) rotate(360deg);
    }
}

.service-item {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(180px);
    --webkit-backdrop-filter: blur(180px);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px 35px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   MOBILE DASHBOARD OVERHAUL (Fixed Header & Card Views)
   ========================================================================== */

/* --- MOBILE HEADER (Dashboard) --- */
.mobile-header {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.brand-logo-mobile img {
    height: 35px;
}

.mobile-toggle-btn {
    background: transparent;
    border: none;
    color: #00a2ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* --- RESPONSIVE CARD VIEW TRANSFORMATION --- */
@media (max-width: 900px) {

    /* Show Mobile Header */
    .mobile-header {
        display: flex !important;
    }

    /* Override Default Toggle */
    .mobile-toggle {
        display: none !important;
    }

    /* Adjust Dashboard Padding for Fixed Header */
    .dashboard-main {
        padding-top: 100px !important;
        /* Clear the 70px header */
    }

    /* Force Table to Card Layout */
    .glass-table,
    .glass-table tbody,
    .glass-table tr,
    .glass-table td {
        display: block !important;
        width: 100% !important;
    }

    /* Hide Original Headers */
    .glass-table thead {
        display: none !important;
    }

    /* Style Rows as Cards */
    .glass-table tr {
        margin-bottom: 25px;
        background: rgba(20, 25, 45, 0.6) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 5px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    /* Style Cells as Rows inside Card */
    .glass-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        min-height: 50px;
    }

    .glass-table td:last-child {
        border-bottom: none;
    }

    /* Inject Labels via data-label */
    .glass-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.75rem;
        color: #64748b;
        letter-spacing: 1px;
    }

    /* Specific Fixes for Progress Bars in Card View */
    .glass-table td[data-label="Progress"] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .glass-table td[data-label="Progress"] .progress-track {
        width: 100%;
        margin-top: 5px;
    }

    .glass-table td[data-label="Progress"]>div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

.service-item .icon-box {
    margin-bottom: 60px;
}

.service-item .icon-box img {
    width: 100%;
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.service-item-content {
    margin-bottom: 30px;
}

.service-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-item-content h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

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

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

.service-btn .readmore-btn {
    display: inline-block;
    line-height: 1em;
    background: var(--secondary-color);
    padding: 12px 50px 12px 20px;
    border-radius: 100px;
    overflow: hidden;
}

.service-btn .readmore-btn:hover {
    color: var(--primary-color);
}

.service-btn .readmore-btn::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: linear-gradient(to left, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.service-btn .readmore-btn:hover::before {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.service-btn .readmore-btn::after {
    right: 18px;
    top: 10px;
}



.our-specialties {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.our-specialties::before {
    content: '';
    display: block;
    position: absolute;
    right: -250px;
    top: 50%;
    background: url(../images/section-bg-shape-3.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 433px;
    height: 241px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes tuberotate {
    from {
        transform: translateY(-100%) rotate(0deg);
    }

    to {
        transform: translateY(50%) rotate(360deg);
    }
}

.our-specialties-content {
    margin-right: 15px;
}

.specialties-item-box {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
}

.specialties-item {
    width: calc(50% - 15px);
}

.specialties-item .icon-box {
    margin-bottom: 20px;
}

.specialties-item .icon-box img {
    max-width: 40px;
    transition: all 0.4s ease-in-out;
}

.specialties-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.specialties-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.intro-video-box {
    position: relative;
    margin-top: 60px;
}

.intro-bg-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.intro-bg-image figure {
    display: block;
}

.intro-bg-image img {
    width: 100%;
    aspect-ratio: 1 / 0.441;
    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 {
    position: relative;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.4s ease-in-out;
}

.video-play-button:hover a {
    background-position: right center;
}

.video-play-button a:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--primary-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--primary-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .3s;
}

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

.video-play-button a i {
    font-size: 30px;
    color: var(--primary-color);
}



.our-facts {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.our-facts::before {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 200px;
    background: url(../images/section-bg-shape-4.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: roundrotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes roundrotate {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(150px) rotate(360deg);
    }
}

.our-facts-content {
    margin-right: 15px;
}

.facts-counter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
    margin-top: 40px;
}

.facts-counter-item {
    width: calc(50% - 40px);
    position: relative;
}

.facts-counter-item::before {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    border-right: 1px solid var(--divider-color);
    height: 100%;
    width: 1px;
}

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

.facts-counter-item h2 {
    font-size: 42px;
    margin-bottom: 5px;
}

.facts-counter-item p {
    margin: 0;
}

.facts-image-box {
    position: relative;
    padding-left: 65px;
}

.facts-image figure {
    display: block;
    mask-image: url(../images/facts-image-bg-shape.png);
    background-image: url(../images/facts-image-bg-shape.png);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.facts-image img {
    width: 100%;
    height: 100%;
}

.award-box {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 20px;
    padding: 40px 20px;
    max-width: 175px;
    z-index: 1;
}

.award-box h2 {
    font-size: 42px;
    margin-bottom: 5px;
}

.award-box p {
    color: var(--primary-color);
    margin: 0;
}

.facts-video-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    max-width: 220px;
    z-index: 1;
}

.facts-video-content .video-play-button a {
    width: 60px;
    height: 60px;
}

.facts-video-content .video-play-button a::before,
.facts-video-content .video-play-button a::after {
    display: none;
}

.facts-video-content .video-play-button i {
    font-size: 22px;
}

.facts-video-content h3 {
    font-size: 20px;
    line-height: 1.3em;
    margin-left: 20px;
}



.why-choose-us {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.why-choose-box {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 60px;
}

.about-us-circle {
    text-align: right;
}

.about-us-circle a {
    display: block;
    border-radius: 50%;
}

.about-us-circle img {
    max-width: 120px;
    border-radius: 50%;
    animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.why-choose-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
}

.why-choose-item {
    position: relative;
    width: calc(33.33% - 53.33px);
}

.why-choose-item::before {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    border-right: 1px solid var(--divider-color);
    height: 100%;
    width: 1px;
}

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

.why-choose-item .icon-box {
    margin-bottom: 30px;
}

.why-choose-item .icon-box img {
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.why-choose-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

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

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

.section-footer-text span {
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.4s ease-in-out;
}

.section-footer-text p:hover span {
    background-position: right center;
}

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

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



.case-study {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.case-study::before {
    content: '';
    display: block;
    position: absolute;
    right: -60px;
    top: 30%;
    background: url(../images/section-bg-shape-5.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: triangle 10s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes triangle {
    0% {
        transform: translateY(0) rotate(10deg);
    }

    100% {
        transform: translateY(60px) rotate(-30deg);
    }
}

.case-study-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.case-study-image {
    position: relative;
}

.case-study-image a {
    display: block;
    cursor: none;
    border-radius: 30px;
    overflow: hidden;
}

.case-study-image figure {
    display: block;
}

.case-study-image img {
    width: 100%;
    aspect-ratio: 1 / 1.215;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-btn {
    position: absolute;
    top: 60px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.case-study-item:hover .case-study-btn {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

.case-study-btn a {
    position: relative;
    display: block;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.case-study-btn a:hover {
    background-position: right center;
}

.case-study-btn a img {
    width: 100%;
    max-width: 30px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.case-study-btn a:hover img {
    transform: rotate(0deg);
}

.case-study-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--secondary-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    padding: 20px;
    overflow: hidden;
    z-index: 1;
}

.case-study-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.case-study-content h3 a {
    color: inherit;
}

.case-study .section-footer-text {
    margin-top: 30px;
}



.our-features {
    position: relative;
    padding: 90px 0 60px;
    z-index: 1;
}

.features-item {
    position: relative;
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px 25px;
    overflow: hidden;
}

.features-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--accent-color) 0.03%, var(--accent-secondary-color) 100%);
    border-radius: 500px 500px 0 0;
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.features-item:hover:before {
    border-radius: 0;
    height: 100%;
}

.features-item .icon-box {
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
}

.features-item .icon-box img {
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.features-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

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

.features-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.features-item-content p {
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.features-item:hover .features-item-content p {
    color: var(--primary-color);
}



.our-pricing {
    position: relative;
    padding: 90px 0;
}

.our-pricing::before {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 30%;
    background: url(../images/section-bg-shape-6.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: roundrotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-pricing-swich {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin-bottom: 60px;
}

.our-pricing-swich.form-switch .form-check-input {
    width: 75px;
    height: 40px;
    --bs-form-check-bg: var(--accent-secondary-color);
    --bs-form-switch-bg: url(../images/pricing-swich-circle.svg);
    background-size: 28px auto;
    background-position: left 5px center;
    border-radius: 100px;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    background-position: right 5px center;
}

.our-pricing-swich label {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-color);
}

.pricing-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(220px);
    -webkit-backdrop-filter: blur(220px);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    background: var(--secondary-color);
    padding: 8px 20px;
}

.pricing-header h2 {
    font-weight: 600;
}

.pricing-body {
    margin-bottom: 40px;
}

.pricing-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-body ul li {
    position: relative;
    text-transform: capitalize;
    line-height: normal;
    color: var(--primary-color);
    padding-left: 30px;
    margin-bottom: 20px;
}

.pricing-body ul li:last-child {
    margin-bottom: 0;
}

.pricing-body ul li::before {
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    font-size: 20px;
    background: linear-gradient(90deg, var(--accent-color) 0.03%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 2px;
    left: 0;
}

.pricing-btn .btn-default {
    width: 100%;
    text-align: center;
}

.pricing-item.highlighted-box {
    background-image: url('../images/pricing-item-bg-shape.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}

.pricing-benefit-list {
    margin-top: 30px;
}

.pricing-benefit-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
}

.pricing-benefit-list ul li {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img {
    max-width: 20px;
    margin-right: 15px;
}

/************************************/
/*** 	14. Our Testimonial css   ***/
/************************************/

.our-testimonial {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.our-testimonial::before {
    content: '';
    display: block;
    position: absolute;
    right: -110px;
    top: 45%;
    background: url(../images/section-bg-shape-7.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 360px;
    height: 240px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.customer-review-box.testimonial-customer-box {
    max-width: 55%;
    margin: 0 0 0 auto;
    justify-content: end;
}

.customer-review-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.customer-review-images {
    display: inline-flex;
}

.customer-image {
    margin-left: -14px;
}

.customer-image:first-child {
    margin: 0;
}

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

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

.customer-review-content {
    width: 52%;
}

.customer-review-content p {
    margin-bottom: 0;
}

.testimonial-review-box {
    border: 1px solid var(--divider-color);
    background: var(--secondary-color);
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    border-radius: 24px;
    text-align: center;
    padding: 50px;
}

.testimonial-review-header {
    margin-bottom: 30px;
}

.testimonial-review-header h2 {
    font-size: 80px;
    margin-bottom: 5px;
}

.testimonial-rating {
    margin-bottom: 10px;
}

.testimonial-rating i {
    color: var(--accent-secondary-color);
}

.testimonial-review-header p {
    margin: 0;
}

.testimonial-review-content {
    margin-top: 30px;
}

.testimonial-review-content h3 {
    font-size: 20px;
    line-height: 1.3em;
}

.testimonial-slider {
    margin-left: 30px;
}

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

.testimonial-company-logo {
    margin-bottom: 30px;
}

.testimonial-company-logo img {
    max-width: 200px;
    max-height: 40px;
}

.testimonial-content {
    margin-bottom: 40px;
}

.testimonial-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.testimonial-body {
    display: flex;
    align-items: center;
}

.author-image {
    margin-right: 15px;
}

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

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

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

.author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 30px;
    z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 14px;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
    margin-left: 30px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
    background: var(--accent-secondary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
    transform: rotate(180deg);
}

/************************************/
/***       15.  Our FAQs css      ***/
/************************************/

.our-faqs {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.faqs-content {
    margin-right: 15px;
}

.faqs-contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.faqs-contact-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.faqs-contact-item .icon-box {
    margin-right: 20px;
}

.faqs-contact-item .icon-box img {
    max-width: 50px;
}

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

.faqs-contact-item-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

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

.faqs-contact-item-content p a {
    color: inherit;
}

.faqs-image {
    margin-top: 40px;
}

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

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

.faq-accordion .accordion-item {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

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

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

.faq-accordion .accordion-header .accordion-button.collapsed {
    padding: 27px 60px 27px 30px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: "FontAwesome";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    transform: translateY(-50%) rotate(0deg);
    color: var(--primary-color);
}

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

.faq-accordion .accordion-item .accordion-body p {
    color: var(--text-color);
    margin: 0;
}

/************************************/
/***        16. Our Blog css      ***/
/************************************/

.our-blog {
    position: relative;
    padding: 90px 0 60px;
    z-index: 1;
}

.our-blog::before {
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 30%;
    background: url(../images/section-bg-shape-8.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: triangle 10s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

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

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    cursor: none;
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.695;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

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

.post-item-content {
    margin-bottom: 20px;
}

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

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

/************************************/
/***        17. CTA Box css       ***/
/************************************/

.cta-box {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.cta-box::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 50%;
    background: url(../images/section-bg-shape-1.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.cta-box-content {
    background: var(--secondary-color) url('../images/cta-box-content-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    border-radius: 30px;
    text-align: center;
    padding: 80px 9.896vw;
}

.cta-box-content .section-title {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form,
.cta-box-list {
    padding-top: 40px;
}

.cta-box-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.cta-box-list ul li {
    position: relative;
    border: 1px solid var(--divider-color);
    border-radius: 99px;
    line-height: 1.5em;
    padding: 6px 20px 6px 50px;
}

.cta-box-list ul li::before {
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    font-size: 20px;
    background: linear-gradient(90deg, var(--accent-color) 0.03%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.subscribe-form .form-group {
    width: 100%;
    max-width: 615px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.subscribe-form .form-group .form-control {
    width: calc(68% - 10px);
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    color: var(--white-color);
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 99px;
    outline: none;
    box-shadow: none;
    padding: 12px 20px;
}

.subscribe-form .form-group .form-control::placeholder {
    font-size: 12px;
    color: var(--text-color);
}

.subscribe-form .form-group .btn-default {
    width: calc(32% - 10px);
}

/************************************/
/***        18. Footer css        ***/
/************************************/

.our-scrolling-ticker.footer-scrolling-ticker {
    padding: 0;
    background: transparent;
}

.our-scrolling-ticker.footer-scrolling-ticker .scrolling-content span {
    font-size: 10.417vw;
    font-weight: 700;
    line-height: 0.8em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-color) 0.03%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-scrolling-ticker.footer-scrolling-ticker .scrolling-content span a {
    display: block;
    color: inherit;
}

.main-footer {
    position: relative;
    padding: 100px 0 0;
    z-index: 1;
}

.about-footer {
    margin-right: 30px;
}

.footer-logo {
    margin-bottom: 30px;
}

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

.about-footer-content {
    margin-bottom: 30px;
}

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

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

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

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

.footer-social-links ul li a {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

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

.footer-social-links ul li a i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-links h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

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

.footer-links ul li {
    text-transform: capitalize;
    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.3s ease-in-out;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
    background: var(--accent-secondary-color);
}

.footer-contact-item .icon-box i {
    font-size: 16px;
    color: var(--primary-color);
}

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

.footer-contact-content p {
    color: var(--white-color);
    margin: 0;
}

.footer-contact-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

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

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

.footer-copyright-text p {
    color: var(--black-color);
    margin: 0;
}

/************************************/
/***     19. About Us Page css    ***/
/************************************/

.page-header {
    position: relative;
    padding: 260px 0 150px;
    z-index: 1;
}

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

.page-header-box h1 {
    font-size: 52px;
    line-height: 1.2em;
    font-weight: 300;
    margin-bottom: 15px;
    cursor: none;
}

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

.page-header-box:hover h1 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;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
}

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

.page-header-box ol li.breadcrumb-item.active {
    color: var(--text-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--text-color);
}

.about-us.page-about-us::before {
    display: none;
}

.our-potential {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.our-potential::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 30%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-potential-content {
    margin-right: 20px;
}

.potential-accordion .accordion-item {
    margin-bottom: 40px;
}

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

.potential-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--primary-color);
    padding-right: 25px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.potential-accordion .accordion-item:last-child .accordion-header .accordion-button {
    padding-bottom: 0;
    border-bottom: none;
}

.potential-accordion .accordion-button:not(.collapsed) {
    margin-bottom: 30px;
}

.potential-accordion .accordion-item .accordion-button::after,
.potential-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.potential-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.potential-accordion .accordion-item .accordion-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.accordion-image {
    width: calc(44% - 15px);
}

.accordion-image img {
    width: 100%;
    aspect-ratio: 1 / 0.721;
    object-fit: cover;
    border-radius: 30px;
}

.accordion-item-content {
    width: calc(56% - 15px);
}

.accordion-item-content p {
    margin-bottom: 20px;
}

.accordion-item-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.accordion-item-content ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 10px;
}

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

.accordion-item-content ul li::before {
    content: "\f621";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.potential-image figure {
    display: block;
    border-radius: 30px;
}

.potential-image img {
    width: 100%;
    aspect-ratio: 1 / 1.49;
    object-fit: cover;
    border-radius: 30px;
}

.who-we-are {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.who-we-are::before {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 150px;
    background: url('../images/section-bg-shape-2.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: squrerotate 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.who-we-are-images {
    position: relative;
    display: flex;
    gap: 30px;
}

.who-we-img-box {
    width: calc(50% - 15px);
}

.who-we-are-img figure {
    display: block;
    border-radius: 30px;
}

.who-we-are-img img {
    width: 100%;
    aspect-ratio: 1 / 1.634;
    object-fit: cover;
    border-radius: 30px;
}

.readmore-img-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.readmore-img-circle a {
    display: block;
    border-radius: 50%;
}

.readmore-img-circle a img {
    width: 100%;
    max-width: 120px;
    border-radius: 50%;
    animation: infiniterotate 25s infinite linear;
}

.who-we-are-content {
    margin-left: 20px;
}

.who-we-counter-item {
    display: flex;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

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

.who-we-counter-item h2 {
    width: calc(25% - 20px);
    font-size: 42px;
    margin-right: 20px;
}

.who-we-counter-item p {
    width: 75%;
    margin-bottom: 0;
}

.our-team {
    position: relative;
    padding: 90px 0 60px;
    z-index: 1;
}

.our-team::before {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 200px;
    background: url(../images/section-bg-shape-4.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: roundrotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

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

.team-image figure,
.team-image a {
    display: block;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.222;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

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

.team-body {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--secondary-color);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 14px;
    text-align: center;
    padding: 15px;
    overflow: hidden;
    z-index: 2;
}

.team-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.team-social-list {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list {
    height: 36px;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

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

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

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

.team-social-list ul li a {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li:hover a {
    background: var(--accent-secondary-color);
}

.team-social-list ul li a i {
    color: var(--primary-color);
    font-size: 16px;
}

.our-success {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}



.our-success-content {
    margin-right: 20px;
}

.success-item {
    position: relative;
    display: flex;
    padding: 20px 30px;
    border: 1px solid var(--divider-color);
    background-color: var(--secondary-color);
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    border-radius: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.success-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
}

.success-item:hover:before {
    height: 100%;
}

.success-item .icon-box,
.success-item-content {
    position: relative;
    z-index: 1;
}

.success-item .icon-box {
    margin-right: 20px;
}

.success-item .icon-box img {
    width: 100%;
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.success-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.success-item-content {
    width: calc(100% - 70px);
}

.success-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.success-item-content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.success-item:hover .success-item-content h3,
.success-item:hover .success-item-content p {
    color: var(--primary-color);
}

.our-success-iamges {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.success-img-1 {
    margin-right: 125px;
}

.success-img-1 figure,
.success-img-2 figure {
    display: block;
    border-radius: 30px;
}

.success-img-1 img,
.success-img-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.success-img-1 img {
    aspect-ratio: 1 / 1.135;
}

.success-img-2 {
    position: relative;
    width: 100%;
    max-width: 435px;
    border: 10px solid var(--bg-color);
    border-radius: 40px;
    overflow: hidden;
    margin-top: -350px;
    z-index: 1;
}

.success-img-2 img {
    aspect-ratio: 1 / 1.172;
}

.our-partners {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.our-partners-box {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 80px 0;
}

.our-partners-content {
    margin-left: 60px;
    margin-bottom: 60px;
}

.our-partners-content .section-title {
    width: 100%;
    max-width: 650px;
    margin-bottom: 0;
}

.our-partners-slider .partner-logo {
    padding: 18px;
    text-align: center;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color);
    border-radius: 8px;
}

.our-partners-slider .partner-logo img {
    width: 100%;
    max-height: 70px;
}

/************************************/
/***     20. Services Page css    ***/
/************************************/

.page-services {
    position: relative;
    padding: 180px 0 60px;
    z-index: 1;
}

.page-services::before {
    content: '';
    display: block;
    position: absolute;
    right: -180px;
    bottom: 15%;
    background: url('../images/section-bg-shape-3.png') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 430px;
    height: 240px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

/************************************/
/***    21. Service Single css    ***/
/************************************/

.page-service-single {
    position: relative;
    padding: 180px 0;
    z-index: 1;
}

.page-service-single::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 10%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: top right;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-service-single::after {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 50%;
    background: url('../images/section-bg-shape-2.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: squrerotate 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

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

.page-catagory-list {
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 30px;
    margin-bottom: 50px;
}

.page-catagory-list h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.page-catagory-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-catagory-list ul li a {
    position: relative;
    display: block;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 0 30px 15px 0;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

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

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

.page-catagory-list ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url('../images/arrow-white.svg') no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.page-catagory-list ul li a:hover:before {
    transform: rotate(0);
}

.sidebar-cta-box {
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 40px;
}

.sidebar-cta-img {
    margin-bottom: 15px;
}

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

.sidebar-cta-content {
    margin-bottom: 20px;
}

.sidebar-cta-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.sidebar-cta-content p {
    margin-bottom: 0;
}

.service-featured-image {
    margin-bottom: 30px;
}

.service-featured-image figure {
    display: block;
    border-radius: 30px;
}

.service-featured-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.598;
    border-radius: 30px;
}

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

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

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

.service-entry h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry h2 span {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.service-entry h2:hover span {
    background-position: right center;
}

.service-solution-box,
.service-trusted-expert {
    margin-top: 60px;
}

.service-solution-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-solution-step-item {
    width: calc(33.33% - 20px);
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: hidden;
    padding: 0 20px 40px;
}

.solution-step-no {
    height: 80px;
    width: 80px;
    text-align: center;
    align-content: center;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 0 0 0 30px;
    margin: 0 -20px 0 auto;
    transition: all 0.3s ease-in-out;
}

.service-solution-step-item:hover .solution-step-no {
    background-position: right center;
}

.solution-step-no h3 {
    font-size: 20px;
}

.service-solution-step-item .icon-box {
    margin-bottom: 40px;
}

.service-solution-step-item .icon-box img {
    width: 100%;
    max-width: 50px;
    transition: all 0.3s ease-in-out;
}

.service-solution-step-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.solution-step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-entry-image,
.service-trusted-expert-item {
    margin-top: 40px;
}

.service-entry-image figure {
    border-radius: 30px;
}

.service-entry-image img {
    width: 100%;
    aspect-ratio: 1 / 0.51;
    object-fit: cover;
    border-radius: 30px;
}

.service-trusted-expert-item .success-item {
    background: transparent;
    padding: 40px;
}

.service-trusted-expert-item .success-item::before {
    background: var(--secondary-color);
}

.service-trusted-expert-item .success-item .icon-box {
    margin-right: 30px;
}

.service-trusted-expert-item .success-item .success-item-content {
    width: calc(100% - 80px);
}

/************************************/
/***     22. Blog Archive css     ***/
/************************************/

.page-blog {
    position: relative;
    padding: 180px 0;
    z-index: 1;
}

.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 {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    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-secondary-color);
}

/************************************/
/***      23. Blog Single css     ***/
/************************************/

.page-single-post {
    position: relative;
    padding: 180px 0;
    z-index: 1;
}

.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: 30px;
    overflow: hidden;
}

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

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

.post-entry {
    border-bottom: 1px solid var(--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-weight: 300;
    line-height: 1.1em;
    margin: 0 0 0.4em;
}

.post-entry h1 {
    font-size: 52px;
}

.post-entry h2 {
    font-size: 42px;
}

.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;
    font-weight: 600;
}

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

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

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

.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: url('../images/icon-blockquote.svg'), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border: 1px solid var(--divider-color);
    border-radius: 18px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--white-color);
}

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

.tag-links {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    border-radius: 100px;
    padding: 12px 20px;
    transition: all 0.3s 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 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background-position: right center;
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***    24. Case Study Page css   ***/
/************************************/

.page-case-study {
    position: relative;
    padding: 180px 0 150px;
    z-index: 1;
}

.page-case-study::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 15%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: top right;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-case-study::after {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 50%;
    background: url('../images/section-bg-shape-2.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: squrerotate 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

/************************************/
/***  25. Case Study Single css   ***/
/************************************/

.page-case-study-single {
    position: relative;
    padding: 180px 0;
    z-index: 1;
}

.page-case-study-single::before {
    content: '';
    display: block;
    position: absolute;
    right: -60px;
    top: 200px;
    background: url('../images/section-bg-shape-5.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: triangle 10s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-case-study-single::after {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 50%;
    background: url('../images/section-bg-shape-4.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: roundrotate 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.case-study-category-list {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    margin-bottom: 50px;
    padding: 30px;
}

.case-study-category-item {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.case-study-category-item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.case-study-category-item h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.case-study-category-item p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.case-study-slider {
    margin-bottom: 60px;
}

.case-study-slider figure {
    border-radius: 30px;
}

.case-study-slider img {
    width: 100%;
    aspect-ratio: 1 / 0.538;
    object-fit: cover;
    border-radius: 30px;
}

.case-study-pagination {
    position: relative;
    text-align: center;
    margin-top: 25px;
}

.case-study-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--secondary-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.case-study-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 10px;
}

.case-study-entry {
    margin-bottom: 60px;
}

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

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

.case-study-entry h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.case-study-entry h2 span {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.case-study-entry h2:hover span {
    background-position: right center;
}

.case-study-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.case-study-entry ul li {
    background: url('../images/arrow-accent.svg') no-repeat center left;
    background-size: 22px auto;
    background-position: top left;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

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

.case-study-solution-box {
    margin-top: 60px;
}

.case-study-solution-list {
    margin-top: 40px;
}

.case-study-solution-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.case-study-solution-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.case-study-solution-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.case-study-solution-item ul {
    margin-bottom: 0;
}

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

.solution-item {
    position: relative;
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 20px 20px 20px 70px;
}

.solution-item::before {
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.solution-item:hover::before {
    color: var(--accent-secondary-color);
}

.solution-item.highlighted-box {
    width: 100%;
}

/************************************/
/***       26. Team Page css      ***/
/************************************/

.page-team {
    position: relative;
    padding: 180px 0 150px;
    z-index: 1;
}

.page-team::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 18%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: top right;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team::after {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 50%;
    background: url('../images/section-bg-shape-2.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: squrerotate 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

/************************************/
/***      27. Team Single css     ***/
/************************************/

.page-team-single {
    position: relative;
    padding: 180px 0;
    z-index: 1;
}

.page-team-single::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 8%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: top right;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team-single::after {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 50%;
    background: url('../images/section-bg-shape-2.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: squrerotate 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.team-single-image {
    position: relative;
}

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

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

.member-social-list {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    background: var(--secondary-color);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 14px;
    padding: 20px;
    z-index: 1;
}

.member-social-list ul {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.member-social-list ul li:last-child {
    margin: 0;
}

.member-social-list ul li a {
    border: 1px solid var(--divider-color);
    background: var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a {
    background-color: var(--accent-secondary-color);
}

.member-social-list ul li a i {
    font-size: 18px;
    color: var(--primary-color);
}

.team-member-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.team-member-body-list,
.team-contact-list {
    width: calc(50% - 15px);
}

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

.team-member-body-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

.team-member-body-list ul li:last-child {
    margin-bottom: 0;
}

.team-member-body-list ul li::before {
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: var(--accent-color);
}

.team-contact-list {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 30px;
}

.team-member-skills,
.team-member-qualification,
.team-contact-form {
    margin-top: 60px;
}

.member-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
}

.skills-progress-bar {
    width: calc(50% - 20px);
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no {
    color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 100px;
}

.team-member-list ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.team-member-list ul li {
    background: url('../images/arrow-accent.svg') no-repeat center left;
    background-size: 22px auto;
    background-position: top left;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

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

.contact-us-form.team-contact-form {
    padding: 0;
}

/************************************/
/***     28. Page Pricing css     ***/
/************************************/

.page-pricing {
    position: relative;
    padding: 180px 0 90px;
    z-index: 1;
}

.page-pricing::before {
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 25%;
    background: url('../images/section-bg-shape-6.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: roundrotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

/************************************/
/***   29. Testimonials Page css  ***/
/************************************/

.page-testimonials {
    position: relative;
    padding: 180px 0 90px;
    z-index: 1;
}

.page-testimonials::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 20%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-testimonials::after {
    content: '';
    display: block;
    position: absolute;
    left: -180px;
    bottom: 15%;
    background: url('../images/section-bg-shape-3.png') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 430px;
    height: 240px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-testimonials .testimonial-item {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-rating {
    margin-bottom: 20px;
}

.page-testimonials .testimonial-item .testimonial-body {
    gap: 10px;
    justify-content: space-between;
}

.page-testimonials .testimonial-item .testimonial-body .testimonial-author-box {
    display: flex;
    align-items: center;
}

.page-testimonials .testimonial-item .testimonial-body .testimonial-company-logo {
    margin-bottom: 0;
}

/************************************/
/***     30. Image Gallery css    ***/
/************************************/

.page-gallery {
    position: relative;
    padding: 180px 0 150px;
    z-index: 1;
}

.page-gallery::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 20%;
    background: url('../images/section-bg-shape-4.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-gallery::after {
    content: '';
    display: block;
    position: absolute;
    left: -180px;
    bottom: 15%;
    background: url('../images/section-bg-shape-3.png') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 430px;
    height: 240px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.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: 30px;
}

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

/************************************/
/***     31. Video Gallery css    ***/
/************************************/

.page-video-gallery {
    position: relative;
    padding: 180px 0 150px;
    z-index: 1;
}

.page-video-gallery::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 20%;
    background: url('../images/section-bg-shape-6.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-video-gallery::after {
    content: '';
    display: block;
    position: absolute;
    left: -180px;
    bottom: 15%;
    background: url('../images/section-bg-shape-3.png') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 430px;
    height: 240px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.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: 30px;
    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: 40%;
    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(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    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.893;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***       32. FAQs Page css      ***/
/************************************/

.page-faqs {
    position: relative;
    padding: 180px 0 90px;
    z-index: 1;
}

.page-faqs::before {
    content: '';
    display: block;
    position: absolute;
    right: -110px;
    top: 15%;
    background: url('../images/section-bg-shape-7.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 360px;
    height: 240px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.page-faqs::after {
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 50%;
    background: url('../images/section-bg-shape-8.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: triangle 10s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

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

.page-faqs .page-faq-accordion:last-child {
    margin-bottom: 0px;
}

/************************************/
/***    33. Contact Us Page css   ***/
/************************************/

.page-contact-us {
    position: relative;
    padding: 180px 0;
    z-index: 1;
}

.page-contact-us::before {
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 30%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 240px;
    height: 240px;
    animation: circlerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.contact-us-form {
    padding-right: 15px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 10px;
    padding: 14px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    font-size: 14px;
    color: var(--text-color);
}

.contact-form .btn-default {
    width: 100%;
    border-radius: 10px;
}

.contact-us-content {
    border-left: 1px solid var(--divider-color);
    padding-left: 45px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon-box {
    margin-right: 20px;
}

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

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

.contact-item-content p {
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-item-content h3 {
    font-size: 20px;
}

.contact-item-content h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-item-content h3 a:hover {
    color: var(--accent-secondary-color);
}

.google-map-iframe {
    width: 100%;
    margin-top: 180px;
}

.google-map-iframe iframe {
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

/************************************/
/***    34. 404 Error Page css    ***/
/************************************/

.error-page {
    position: relative;
    padding: 180px 0;
    z-index: 1;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 32%;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/
/***      35. Responsive css      ***/
/************************************/

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

    .main-header {
        border-bottom: 1px solid var(--divider-color);
    }

    .navbar {
        padding: 20px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

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

    .header-btn {
        display: none;
    }

    .btn-default {
        padding: 14px 20px;
    }

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

    .section-title.section-title-center {
        max-width: 100%;
    }

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

    .section-title h3 {
        font-size: 14px;
        background-position: left 15px center;
        background-size: 16px auto;
        padding: 8px 15px 8px 40px;
        margin-bottom: 15px;
    }

    .section-title h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .section-title p span {
        font-size: 18px;
    }

    .section-title-content {
        margin-top: 15px;
    }

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

    .section-content-btn .section-btn {
        margin-top: 15px;
    }

    .hero {
        padding: 170px 0 80px;
        background-size: 80% auto;
    }

    .grid-lines {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero.hero-bg-image {
        padding: 170px 0 80px;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-slide {
        padding: 170px 0 80px;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-pagination {
        bottom: 30px;
    }

    .hero-btn {
        margin-top: 30px;
    }

    .hero-company-slider {
        margin-top: 80px;
    }

    .hero-company-slider p {
        margin-bottom: 20px;
    }

    .our-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-content span {
        font-size: 24px;
    }

    .scrolling-content span img {
        max-width: 24px;
    }

    .about-us {
        padding: 90px 0 45px;
    }

    .about-us::before {
        right: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .about-counter-box {
        margin-bottom: 30px;
    }

    .about-counter-box h2 {
        font-size: 140px;
    }

    .about-counter-box p {
        padding: 8px 15px;
    }

    .about-list-item img {
        max-width: 40px;
        margin-bottom: 15px;
    }

    .about-us-body {
        margin-top: 40px;
    }

    .our-services {
        padding: 45px 0 15px;
    }

    .our-services::before {
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .service-item {
        border-radius: 20px;
        padding: 30px;
    }

    .service-btn .readmore-btn {
        padding: 10px 45px 10px 15px;
    }

    .service-btn .readmore-btn::after {
        right: 15px;
        top: 8px;
    }

    .service-item .icon-box {
        margin-bottom: 40px;
    }

    .service-item .icon-box img {
        max-width: 40px;
    }

    .our-specialties {
        padding: 45px 0;
    }

    .our-specialties::before {
        right: -120px;
        width: 250px;
        height: 151px;
        opacity: 20%;
    }

    .our-specialties-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .specialties-item-box {
        gap: 40px 30px;
    }

    .intro-video-box {
        margin-top: 40px;
    }

    .intro-bg-image {
        border-radius: 20px;
    }

    .video-play-button a {
        width: 70px;
        height: 70px;
    }

    .video-play-button a i {
        font-size: 24px;
    }

    .our-facts {
        padding: 45px 0;
    }

    .our-facts::before {
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .our-facts-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .facts-counter-box {
        margin-top: 30px;
    }

    .facts-counter-item h2 {
        font-size: 32px;
    }

    .facts-image-box {
        padding-left: 65px;
    }

    .award-box {
        padding: 30px 15px;
    }

    .award-box h2 {
        font-size: 32px;
    }

    .facts-video-content h3 {
        font-size: 18px;
    }

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

    .why-choose-box {
        border-radius: 20px;
        padding: 30px;
    }

    .about-us-circle img {
        max-width: 100px;
    }

    .why-choose-item-list {
        gap: 30px;
    }

    .why-choose-item {
        width: calc(33.33% - 20px);
    }

    .why-choose-item::before {
        right: -15px;
    }

    .why-choose-item .icon-box {
        margin-bottom: 20px;
    }

    .why-choose-item .icon-box img {
        max-width: 40px;
    }

    .why-choose-item-content p {
        font-size: 14px;
    }

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

    .case-study {
        padding: 45px 0;
    }

    .case-study::before {
        right: -30px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .case-study-image a {
        border-radius: 20px;
    }

    .case-study-image img {
        aspect-ratio: 1 / 1.05;
    }

    .case-study-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
        padding: 15px;
    }

    .case-study-item .case-study-btn {
        right: 20px;
    }

    .case-study-item:hover .case-study-btn {
        top: 20px;
    }

    .case-study .section-footer-text {
        margin-top: 10px;
    }

    .our-features {
        padding: 45px 0 15px;
    }

    .features-item {
        border-radius: 20px;
        padding: 20px;
    }

    .features-item .icon-box {
        margin-bottom: 40px;
    }

    .features-item .icon-box img {
        max-width: 40px;
    }

    .our-pricing {
        padding: 45px 0;
    }

    .our-pricing::before {
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .our-pricing-swich {
        gap: 20px;
        margin-bottom: 30px;
    }

    .our-pricing-swich.form-switch .form-check-input {
        width: 56px;
        height: 31px;
        background-size: 22px auto;
    }

    .our-pricing-swich label {
        font-size: 18px;
    }

    .pricing-item {
        border-radius: 20px;
        padding: 30px;
    }

    .pricing-header h3 {
        padding: 8px 15px;
    }

    .pricing-body {
        margin-bottom: 30px;
    }

    .pricing-body ul li {
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .pricing-body ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .pricing-benefit-list {
        margin-top: 10px;
    }

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

    .our-testimonial::before {
        right: -110px;
        top: 45%;
        width: 240px;
        height: 150px;
        opacity: 20%;
    }

    .customer-review-box.testimonial-customer-box {
        max-width: 100%;
        margin: 15px 0 0 0;
        justify-content: left;
    }

    .testimonial-review-box {
        padding: 30px;
        margin-bottom: 30px;
    }

    .testimonial-review-header h2 {
        font-size: 60px;
    }

    .testimonial-review-header {
        margin-bottom: 20px;
    }

    .testimonial-review-content {
        margin-top: 20px;
    }

    .testimonial-slider {
        margin: 0;
    }

    .testimonial-company-logo {
        margin-bottom: 15px;
    }

    .testimonial-company-logo img {
        max-width: 160px;
        max-height: 30px;
    }

    .testimonial-content {
        margin-bottom: 30px;
    }

    .testimonial-content p {
        font-size: 18px;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev {
        width: 40px;
        height: 40px;
    }

    .testimonial-slider .testimonial-button-next::before,
    .testimonial-slider .testimonial-button-prev::before {
        background-size: 22px auto;
    }

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

    .faqs-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faqs-image {
        margin-top: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .faq-accordion .accordion-header .accordion-button,
    .faq-accordion .accordion-header .accordion-button.collapsed {
        padding: 14px 45px 14px 20px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 20px;
        font-size: 20px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 14px 45px 14px 20px;
    }

    .our-blog {
        padding: 45px 0 15px;
    }

    .our-blog::before {
        top: 40%;
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 30%;
    }

    .post-featured-image {
        margin-bottom: 15px;
    }

    .post-featured-image a,
    .post-featured-image img {
        border-radius: 20px;
    }

    .cta-box {
        padding: 45px 0;
    }

    .cta-box::before {
        right: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .cta-box-content {
        border-radius: 20px;
        padding: 40px;
    }

    .cta-box-list ul {
        gap: 15px;
    }

    .cta-box-list ul li {
        padding: 6px 15px 6px 40px;
    }

    .cta-box-list ul li::before {
        left: 15px;
        font-size: 18px;
    }

    .subscribe-form,
    .cta-box-list {
        padding-top: 30px;
    }

    .subscribe-form .form-group .form-control {
        padding: 10px 15px;
    }

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

    .about-footer {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .about-footer-content,
    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links h3 {
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-contact-item {
        margin-bottom: 15px;
    }

    .footer-copyright-text {
        margin-top: 30px;
        padding: 30px 0;
    }

    .page-header {
        padding: 160px 0 70px;
    }

    .page-header-box h1 {
        font-size: 40px;
    }

    .our-potential {
        padding: 45px 0;
    }

    .our-potential::before {
        right: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .our-potential-content {
        margin: 0 0 30px 0;
    }

    .potential-accordion .accordion-item {
        margin-bottom: 30px;
    }

    .potential-accordion .accordion-header .accordion-button {
        padding-bottom: 15px;
    }

    .potential-accordion .accordion-button:not(.collapsed) {
        margin-bottom: 20px;
    }

    .potential-accordion .accordion-item .accordion-button::after,
    .potential-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 18px;
    }

    .accordion-image figure {
        border-radius: 20px;
    }

    .accordion-image img {
        aspect-ratio: 1 / 0.62;
        border-radius: 20px;
    }

    .accordion-item-content ul li {
        padding-left: 25px;
        margin-bottom: 8px;
    }

    .accordion-item-content ul li::before {
        font-size: 16px;
    }

    .potential-image figure {
        border-radius: 20px;
    }

    .potential-image img {
        aspect-ratio: 1 / 0.75;
        border-radius: 20px;
    }

    .who-we-are {
        padding: 45px 0;
    }

    .who-we-are::before {
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .who-we-are-images {
        margin: 0 0 30px 0;
    }

    .who-we-are-img figure {
        border-radius: 20px;
    }

    .who-we-are-img img {
        aspect-ratio: 1 / 1.3;
        border-radius: 20px;
    }

    .who-we-are-content {
        margin: 0;
    }

    .who-we-counter-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .who-we-counter-item h2 {
        font-size: 32px;
    }

    .our-team {
        padding: 45px 0 15px;
    }

    .our-team::before {
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .team-item {
        border-radius: 20px;
    }

    .our-success {
        padding: 45px 0;
    }

    .our-success-content {
        margin: 0 0 30px 0;
    }

    .success-item {
        padding: 20px;
        border-radius: 20px;
    }

    .our-success-iamges {
        width: 100%;
    }

    .success-img-1 figure,
    .success-img-1 img {
        border-radius: 20px;
    }

    .success-img-2 figure,
    .success-img-2 img {
        border-radius: 24px;
    }

    .success-img-1 {
        width: 100%;
        margin-right: 160px;
    }

    .success-img-2 {
        max-width: 360px;
        border-radius: 30px;
        margin-top: -300px;
    }

    .our-partners {
        padding: 45px 0;
    }

    .our-partners-box {
        border-radius: 20px;
        padding: 40px 0;
    }

    .our-partners-content {
        margin: 0 30px 30px;
    }

    .our-partners-content .section-title {
        max-width: 100%;
    }

    .our-partners-slider .partner-logo {
        padding: 12px;
    }

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

    .page-services::before {
        right: -120px;
        width: 250px;
        height: 151px;
        opacity: 20%;
    }

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

    .page-service-single::before,
    .page-service-single::after {
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .page-single-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-catagory-list {
        border-radius: 20px;
        margin-bottom: 30px;
        padding: 20px;
    }

    .page-catagory-list h3 {
        margin-bottom: 20px;
    }

    .page-catagory-list ul li a {
        padding: 0 25px 10px 0;
        margin-bottom: 10px;
    }

    .sidebar-cta-box {
        border-radius: 20px;
        padding: 20px;
    }

    .service-featured-image figure,
    .service-featured-image img {
        border-radius: 20px;
    }

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

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

    .service-entry h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .service-solution-box,
    .service-trusted-expert {
        margin-top: 40px;
    }

    .service-solution-step-item {
        border-radius: 20px;
        padding: 0 15px 30px;
    }

    .solution-step-no {
        height: 70px;
        width: 70px;
        border-radius: 0 0 0 20px;
        margin: 0 -15px 0 auto;
    }

    .service-solution-step-item .icon-box {
        margin-bottom: 30px;
    }

    .service-solution-step-item .icon-box img {
        max-width: 40px;
    }

    .solution-step-content p {
        font-size: 14px;
    }

    .service-entry-image,
    .service-trusted-expert-item {
        margin-top: 30px;
    }

    .service-entry-image figure,
    .service-entry-image img {
        border-radius: 20px;
    }

    .service-trusted-expert-item .success-item {
        padding: 30px;
    }

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

    .page-pagination {
        margin-top: 10px;
    }

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

    .post-image {
        margin-bottom: 20px;
    }

    .post-image figure,
    .post-image img {
        border-radius: 20px;
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.47em;
    }

    .post-entry h2 {
        font-size: 32px;
    }

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

    .post-entry ol li,
    .post-entry ul li {
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-case-study {
        padding: 90px 0 60px;
    }

    .page-case-study::before,
    .page-case-study::after {
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .page-case-study-single {
        padding: 90px 0;
    }

    .page-case-study-single::before,
    .page-case-study-single::after {
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .case-study-category-list {
        border-radius: 20px;
        margin-bottom: 30px;
        padding: 20px;
    }

    .case-study-category-item {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .case-study-category-item h3 {
        margin-bottom: 5px;
    }

    .case-study-slider {
        margin-bottom: 40px;
    }

    .case-study-slider figure,
    .case-study-slider img {
        border-radius: 20px;
    }

    .case-study-entry {
        margin-bottom: 40px;
    }

    .case-study-entry h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .case-study-entry p {
        margin-bottom: 15px;
    }

    .case-study-entry ul li {
        background-size: 18px auto;
        background-position: top 2px left;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .case-study-solution-box {
        margin-top: 40px;
    }

    .case-study-solution-list {
        margin-top: 30px;
    }

    .case-study-solution-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .case-study-solution-item h3 {
        margin-bottom: 15px;
    }

    .solution-item-list {
        gap: 20px;
    }

    .solution-item {
        width: calc(50% - 10px);
        border-radius: 20px;
        padding: 15px 10px 15px 40px;
    }

    .solution-item::before {
        left: 10px;
        font-size: 20px;
    }

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

    .page-team::before,
    .page-team::after {
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

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

    .page-team-single::before,
    .page-team-single::after {
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

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

    .team-single-image img {
        aspect-ratio: 1 / 0.75;
        border-radius: 20px;
    }

    .member-social-list {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 15px;
    }

    .team-member-body-list ul li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .team-member-body-list ul li::before {
        top: -1px;
        font-size: 18px;
    }

    .team-member-skills,
    .team-member-qualification,
    .team-contact-form {
        margin-top: 40px;
    }

    .team-contact-list {
        border-radius: 20px;
        padding: 20px;
    }

    .team-member-list ul li {
        background-size: 20px auto;
        background-position: top 2px left;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .page-pricing {
        padding: 90px 0 45px;
    }

    .page-pricing::before {
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

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

    .page-testimonials::before {
        right: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .page-testimonials::after {
        left: -120px;
        width: 250px;
        height: 151px;
        opacity: 20%;
    }

    .page-testimonials .testimonial-item {
        border-radius: 20px;
        padding: 30px;
    }

    .page-testimonials .testimonial-item .testimonial-body {
        display: block;
    }

    .page-testimonials .testimonial-item .testimonial-body .testimonial-author-box {
        margin-bottom: 15px;
    }

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

    .page-gallery::before {
        right: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .page-gallery::after {
        left: -120px;
        width: 250px;
        height: 151px;
        opacity: 20%;
    }

    .page-gallery-box .photo-gallery figure,
    .page-gallery-box .photo-gallery img {
        border-radius: 20px;
    }

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

    .page-video-gallery::before {
        right: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .page-video-gallery::after {
        left: -120px;
        width: 250px;
        height: 151px;
        opacity: 20%;
    }

    .video-gallery-image a::before,
    .video-gallery-image img {
        border-radius: 20px;
    }

    .page-faqs {
        padding: 90px 0 45px;
    }

    .page-faqs::before {
        right: -110px;
        width: 240px;
        height: 150px;
        opacity: 20%;
    }

    .page-faqs::after {
        left: -40px;
        width: 150px;
        height: 150px;
        opacity: 30%;
    }

    .page-faqs .page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 90px 0;
    }

    .page-contact-us::before {
        right: -40px;
        width: 150px;
        height: 150px;
        opacity: 20%;
    }

    .contact-us-form {
        padding: 0;
    }

    .contact-us-content {
        border-left: none;
        border-top: 1px solid var(--divider-color);
        padding: 30px 0 0;
        margin-top: 30px;
    }

    .contact-info-item {
        margin-bottom: 30px;
    }

    .contact-info-item .icon-box {
        margin-right: 15px;
    }

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

    .google-map-iframe {
        margin-top: 90px;
    }

    .google-map-iframe iframe {
        height: 400px;
        border-radius: 20px;
    }

    .error-page {
        padding: 90px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 50%;
    }
}

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

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

    .section-title h1 {
        font-size: 28px;
    }

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

    .section-title p {
        margin-top: 10px;
    }

    .section-title p span {
        font-size: 16px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .grid-lines {
        display: none;
    }

    .hero-company-slider {
        margin-top: 40px;
    }

    .scrolling-ticker-box {
        --gap: 15px;
    }

    .scrolling-content span {
        font-size: 20px;
    }

    .scrolling-content span img {
        max-width: 20px;
        margin-right: 15px;
    }

    .hero-company-slider p {
        font-size: 14px;
    }

    .about-counter-box h2 {
        font-size: 80px;
    }

    .about-list-item {
        width: 100%;
    }

    .about-list-item h3 {
        font-size: 18px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item .icon-box {
        margin-bottom: 30px;
    }

    .service-item-content h3 {
        font-size: 18px;
    }

    .specialties-item-box {
        gap: 30px;
    }

    .specialties-item {
        width: 100%;
    }

    .specialties-item-content h3 {
        font-size: 18px;
    }

    .intro-bg-image img {
        aspect-ratio: 1 / 0.7;
    }

    .facts-counter-box {
        gap: 30px;
    }

    .facts-counter-item {
        width: calc(50% - 15px);
    }

    .facts-counter-item::before {
        right: -15px;
    }

    .facts-counter-item h2 {
        font-size: 22px;
    }

    .facts-image-box {
        padding-left: 30px;
    }

    .award-box {
        padding: 30px 15px;
        max-width: 150px;
    }

    .award-box h2 {
        font-size: 22px;
    }

    .award-box p {
        font-size: 14px;
    }

    .facts-video-content {
        right: 0;
        bottom: 10px;
        max-width: 145px;
    }

    .facts-video-content .video-play-button a {
        width: 45px;
        height: 45px;
    }

    .facts-video-content .video-play-button i {
        font-size: 18px;
    }

    .facts-video-content h3 {
        font-size: 14px;
        margin-left: 5px;
    }

    .why-choose-box {
        padding: 30px 20px;
    }

    .about-us-circle {
        text-align: left;
        margin-top: 15px;
    }

    .about-us-circle img {
        max-width: 80px;
    }

    .why-choose-item {
        width: 100%;
    }

    .why-choose-item::before {
        display: none;
    }

    .why-choose-item-content h3 {
        font-size: 18px;
    }

    .section-footer-text span {
        padding: 2px 8px;
        margin-right: 5px;
    }

    .section-footer-text p {
        font-size: 14px;
    }

    .case-study-content h3 {
        font-size: 18px;
    }

    .case-study-btn a {
        width: 50px;
        height: 50px;
    }

    .case-study-btn a img {
        max-width: 24px;
    }

    .features-item .icon-box {
        margin-bottom: 30px;
    }

    .features-item-content h3 {
        font-size: 18px;
    }

    .our-pricing-swich label {
        font-size: 16px;
    }

    .pricing-item {
        padding: 20px;
    }

    .pricing-benefit-list {
        margin-top: 5px;
    }

    .pricing-benefit-list ul {
        gap: 10px;
    }

    .pricing-benefit-list ul li {
        width: calc(50% - 5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img {
        max-width: 16px;
        margin-right: 5px;
    }

    .customer-review-box {
        margin-bottom: 15px;
    }

    .customer-image {
        margin-left: -10px;
    }

    .customer-image img {
        max-width: 40px;
    }

    .customer-review-content p {
        font-size: 14px;
    }

    .testimonial-review-box {
        padding: 20px;
    }

    .testimonial-review-header h2 {
        font-size: 40px;
    }

    .testimonial-review-content h3 {
        font-size: 18px;
    }

    .testimonial-content {
        margin-bottom: 20px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .author-content h3 {
        font-size: 18px;
    }

    .author-content p {
        font-size: 14px;
    }

    .testimonial-btn {
        position: relative;
        justify-content: center;
        margin-top: 20px;
    }

    .testimonial-slider .testimonial-button-next {
        margin-left: 15px;
    }

    .faqs-contact-item {
        width: 100%;
    }

    .faqs-contact-item .icon-box {
        margin-right: 10px;
    }

    .faqs-contact-item .icon-box img {
        max-width: 40px;
    }

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

    .faqs-contact-item-content h3 {
        font-size: 18px;
    }

    .faqs-image img {
        aspect-ratio: 1 / 0.7;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
    }

    .faq-accordion .accordion-header .accordion-button,
    .faq-accordion .accordion-header .accordion-button.collapsed {
        padding: 14px 35px 14px 15px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 15px;
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-body p {
        font-size: 14px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 14px 15px;
    }

    .post-item-content {
        margin-bottom: 15px;
    }

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

    .cta-box-content {
        padding: 30px 20px;
    }

    .subscribe-form .form-group .form-control {
        width: 100%;
    }

    .subscribe-form .form-group .btn-default {
        width: auto;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-copyright-text {
        margin-top: 0px;
        padding: 15px 0;
    }

    .page-header-box h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 14px;
    }

    .potential-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .accordion-image,
    .accordion-item-content {
        width: 100%;
    }

    .accordion-item-content p {
        margin-bottom: 15px;
    }

    .potential-image img {
        aspect-ratio: 1 / 1.1;
    }

    .who-we-are-images {
        gap: 20px;
    }

    .who-we-img-box {
        width: calc(50% - 10px);
    }

    .who-we-img-box .customer-review-box {
        flex-wrap: wrap;
        gap: 5px;
    }

    .who-we-img-box .customer-review-content {
        width: 100%;
    }

    .who-we-img-box .customer-review-content p {
        font-size: 12px;
    }

    .who-we-img-box:nth-child(even) .who-we-are-img img {
        aspect-ratio: 1 / 1.5;
    }

    .readmore-img-circle a img {
        max-width: 90px;
    }

    .who-we-counter-item {
        display: block;
    }

    .who-we-counter-item h2 {
        width: 100%;
        font-size: 22px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .who-we-counter-item p {
        width: 100%;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .team-content p {
        font-size: 14px;
    }

    .success-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .success-item .icon-box {
        margin-right: 10px;
    }

    .success-item .icon-box img {
        max-width: 40px;
    }

    .success-item-content {
        width: calc(100% - 50px);
    }

    .success-item-content h3 {
        font-size: 18px;
    }

    .success-item-content p {
        font-size: 14px;
    }

    .success-img-1 {
        margin-right: 80px;
    }

    .success-img-2 {
        border-width: 5px;
        max-width: 240px;
        margin-top: -190px;
        border-radius: 20px;
    }

    .success-img-2 figure,
    .success-img-2 img {
        border-radius: 14px;
    }

    .our-partners-box {
        padding: 30px 0;
    }

    .our-partners-content {
        margin: 0 10px 30px;
    }

    .page-catagory-list h3,
    .sidebar-cta-content h3 {
        font-size: 18px;
    }

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

    .service-solution-step-item {
        width: 100%;
        padding: 0 15px 20px;
    }

    .solution-step-no {
        height: 60px;
        width: 60px;
        margin: 0 -15px 0 auto;
    }

    .service-solution-step-item .icon-box {
        margin-bottom: 20px;
    }

    .solution-step-content h3,
    .solution-step-no h3 {
        font-size: 18px;
    }

    .service-trusted-expert-item .success-item {
        padding: 15px;
    }

    .service-trusted-expert-item .success-item .icon-box {
        margin-right: 15px;
    }

    .service-trusted-expert-item .success-item .success-item-content {
        width: calc(100% - 55px);
    }

    .post-single-meta ol li {
        font-size: 16px;
    }

    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

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

    .tag-links {
        font-size: 18px;
    }

    .case-study-category-item h3 {
        font-size: 18px;
    }

    .case-study-slider {
        margin-bottom: 30px;
    }

    .case-study-slider img {
        aspect-ratio: 1 / 0.7;
    }

    .case-study-pagination {
        margin-top: 20px;
    }

    .case-study-entry h2 {
        font-size: 22px;
    }

    .case-study-solution-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .case-study-solution-item h3 {
        font-size: 18px;
    }

    .solution-item {
        width: 100%;
    }

    .solution-item p {
        font-size: 14px;
    }

    .team-single-image img {
        aspect-ratio: 1 / 0.99;
    }

    .member-social-list {
        padding: 10px;
    }

    .team-member-body-list,
    .team-contact-list {
        width: 100%;
    }

    .team-contact-list {
        padding: 15px;
    }

    .skills-progress-bar {
        width: 100%;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }

    .skills-progress-bar .skill-data .skill-title {
        font-size: 16px;
    }

    .page-testimonials .testimonial-item {
        padding: 20px;
    }

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

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

    .contact-item-content h3 {
        font-size: 18px;
    }

    .google-map-iframe iframe {
        height: 350px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}


.main-header .main-menu .nav-item.submenu {
    position: relative;
}


.main-header .main-menu .nav-item.submenu ul {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: #1c1c3a;
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}


.main-header .main-menu .nav-item.submenu:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}


.main-header .main-menu .nav-item.submenu ul li {
    display: block;
    width: 100%;
    margin: 0;
    border-bottom: none;
}


.main-header .main-menu .nav-item.submenu ul li a.nav-link {
    display: block;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 15px;
    text-align: left;/ transition: all 0.2s ease-in-out;
    margin: 4px;
    border-radius: 6px;
    background: transparent;
}


.main-header .main-menu .nav-item.submenu ul li a.nav-link:hover {

    background: linear-gradient(90deg, #007bff, #8e2de2);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
    padding-left: 20px;
}


.main-header .main-menu .nav-item.submenu ul li a.nav-link,
.main-header .main-menu .nav-item.submenu ul {
    background-image: none;
}




.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 30px;
    box-shadow: 2px 2px 6px #00000040;
    z-index: 100;
    transition: all 0.3s ease-in-out;


    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}






.job-card {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.job-card-header h3 a {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.job-card-header h3 a:hover {
    color: var(--accent-secondary-color);
}

.job-meta {
    display: flex;
    gap: 25px;
    margin-top: 10px;
    color: var(--text-color);
    font-size: 15px;
}

.job-meta span i {
    margin-right: 8px;
    color: var(--accent-color);
}

.job-card-body {
    padding: 20px 0;
    border-bottom: 1px solid var(--divider-color);
}

.job-card-footer {
    padding-top: 20px;
}

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

.service-entry-list ul li {
    background: url('../images/arrow-accent.svg') no-repeat center left;
    background-size: 20px auto;
    background-position: top 4px left;
    padding-left: 30px;
    margin-bottom: 15px;
}

.sidebar-cta-box .contact-form .form-control,
.sidebar-cta-box .contact-form input[type="file"] {
    width: 100%;
    background-color: #1c1b2b;
    border: 1px solid var(--divider-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 12px 15px;
}

.sidebar-cta-box .contact-form .form-control::placeholder {
    color: var(--text-color);
}

.sidebar-cta-box .contact-form label {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
}



.our-milestones {
    position: relative;
    padding: 90px 0;
    z-index: 1;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}


.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-secondary-color));
    border-radius: 4px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}


.timeline-item:nth-child(odd) {
    left: 0;
    padding-left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-right: 0;
}


.timeline-marker {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--accent-secondary-color);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    background-color: var(--accent-color);
}


.timeline-content {
    padding: 25px 30px;
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    position: relative;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.timeline-content .timeline-year {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color), var(--accent-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}


@media screen and (max-width: 767px) {
    .timeline-wrapper::before {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-marker {
        top: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 1px;
    }
}



.founder-philosophy-section {
    padding: 120px 0;
    background-color: #060818;
    position: relative;
    overflow: hidden;
}

.founder-philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 170, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 170, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pan 60s linear infinite;
    opacity: 0.5;
}

@keyframes grid-pan {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 1000px;
    }
}

.glass-panel {

    background: rgba(10, 25, 47, 0.15);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.founder-philosophy-section .section-title h3 {
    color: #00aaff;
}

.founder-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: #d0d0d0;
    margin: 30px auto;
    max-width: 80%;
    border-left: 4px solid #00aaff;
    padding-left: 25px;
}

.founder-signature {
    margin-top: 30px;
}

.signature-image {
    width: 250px;
    height: auto;
    margin-bottom: 15px;
}

.founder-signature h4 {
    color: #fff;
    font-weight: 600;
    margin: 0;
    font-size: 1.5rem;
}

.founder-signature p {
    color: #00aaff;
    margin: 5px 0 0;
    font-size: 1rem;
}

.philosophy-divider {
    height: 1px;
    width: 80%;
    background: linear-gradient(to right, transparent, rgba(0, 170, 255, 0.5), transparent);
    margin: 40px auto;
}

.core-principles .principle-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.core-principles .principle-item:hover {
    transform: translateY(-10px);
}

.core-principles .principle-icon {
    font-size: 2.5rem;
    color: #00aaff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 170, 255, 0.7);
}

.core-principles h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.core-principles p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}



.hero,
.our-scrolling-ticker {
    background: none !important;
}

.main-header,
.hero,
.our-scrolling-ticker,
.about-us,
.our-services,
.our-specialties,
.our-facts,
.why-choose-us,
.case-study,
.our-features,
.our-pricing,
.our-testimonial,
.our-faqs,
.our-blog,
.cta-box,
.main-footer,
.page-header {
    position: relative;
    z-index: 1;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}






.why-choose-us-section-2 {
    background-color: #0c0c1b;
    position: relative;
    z-index: 1;
}

.why-choose-us-section-2 .sub-title-content {
    max-width: 600px;
    margin: 0 auto 50px;
}


.why-choose-card {
    background-color: #1a1a2e;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: #00a2ff;
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.15);
}

.why-choose-card .icon-box {
    margin-bottom: 25px;
    background-color: rgba(0, 162, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-card .icon-box img {
    width: 40px;
    height: 40px;
}

.why-choose-card .content-box {
    flex-grow: 1;
}

.why-choose-card .content-box h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-choose-card .content-box p {
    color: #a9a9c4;
    font-size: 16px;
    line-height: 1.7;
}







.hidden {
    display: none !important;
}

#cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

#cookie-consent-modal {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border: 1px solid #0f3460;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #0f3460;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
}

.cookie-modal-body {
    padding: 15px 25px;
    overflow-y: auto;
}

.cookie-modal-body p {
    font-size: 15px;
    line-height: 1.6;
}

.cookie-modal-body p a {
    color: #1687a7;
    text-decoration: underline;
}

.cookie-category {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(15, 52, 96, 0.4);
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category-header h4 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.cookie-category-description {
    font-size: 13px;
    color: #b0b0b0;
    margin-top: 8px;
    margin-bottom: 0;
}

.cookie-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #0f3460;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cookie {
    background-color: #1687a7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background-color: #126e8a;
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background-color: #4a4a5e;
}

.btn-cookie-secondary:hover {
    background-color: #3a3a4a;
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4a4a5e;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #1687a7;
}

input:disabled+.slider {
    cursor: not-allowed;
    background-color: #333;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media (max-width: 768px) {
    .cookie-modal-footer {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}

/* =========================================
   Search Modal Styles
   ========================================= */
.search-item .nav-link {
    cursor: pointer;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 4, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-close-btn:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.search-modal-content {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.search-overlay.active .search-modal-content {
    transform: translateY(0);
}

.search-form-overlay {
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.search-form-overlay input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 60px 20px 10px;
    font-size: 2rem;
    color: white;
    font-weight: 300;
}

.search-form-overlay input:focus {
    outline: none;
}

.search-form-overlay button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.search-modal-content p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =========================================
   Mobile Fixes (Chatbot & WhatsApp Overlap)
   ========================================= */
@media (max-width: 767px) {

    /* Adjust WhatsApp Button Position */
    .whatsapp-float {
        bottom: 90px !important;
        /* Moved up slightly */
        right: 20px !important;
        width: 50px;
        height: 50px;
        font-size: 25px;
        line-height: 50px;
    }

    /* Adjust Chatbot Toggle Button Position */
    #aria-button-wrapper {
        bottom: 20px !important;
        /* Kept at bottom */
        right: 20px !important;
    }

    #aria-toggle-btn {
        width: 55px;
        height: 55px;
    }

    /* Ensure Search Icon is visible in Mobile Menu if needed, 
       or add specific mobile search styles here */
    .slicknav_nav .search-item {
        display: block;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .slicknav_nav .search-item a {
        display: inline-block;
        padding: 10px 0;
    }
}

/* Utility Class for Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Applying Glassmorphism to existing components */
.service-card,
.testimonial-card,
.about-counter-box,
.about-statement-box,
.specialties-item,
.facts-counter-item,
.award-box,
.cta-box-section,
.accordion-item {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.specialties-item:hover {
    border-color: var(--accent-color) !important;
    box-shadow: 0 8px 32px 0 rgba(65, 133, 221, 0.2) !important;
    transform: translateY(-5px);
}