/* ==============================
   Tyfora — Global Reset & Theme
   ============================== */

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove list styles */
ul,
ol {
    list-style: none;
}

/* VARIABLES */
:root {
    --bodyColor: #080807;
    --themeColor: #64FF37;
    --greyColor: #858585;
    --blackColor: #000000;
    --whiteColor: #ffffff;
    --buttonBg: #141712;
    --accentColor: #141712;

    --borderColor: #393939;

    --headingFont: "Syne", sans-serif;
    --textFont: "Poppins", sans-serif;
    /* --textFont2: "Lexend Deca", sans-serif; */

    --container-width: 1200px;
}

/* Scrollbar styling for WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
    /* scrollbar width */
    height: 10px;
    /* horizontal scrollbar height */
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    /* dark background of track */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--themeColor);
    /* your theme color */
    border-radius: 10px;
    border: 2px solid #1a1a1a;
    /* adds space around thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: lighten(var(--themeColor), 10%);
    /* slightly lighter on hover */
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    /* "auto" or "thin" */
    scrollbar-color: var(--themeColor) #1a1a1a;
    /* thumb color | track color */
}


/* BASE GLOBALS */
body {
    background: var(--bodyColor);
    color: var(--whiteColor);
    font-family: var(--headingFont);
    line-height: 1.6;
    width: 100%;
}

/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headingFont);
    font-weight: 700;
    color: var(--whiteColor);
}

/* LINKS */
a {
    text-decoration: none;
    color: var(--themeColor);
    transition: 0.3s ease;
    outline: none;
}

/* INPUT FOCUS */
input:focus,
textarea:focus,
select:focus {
    outline: 1px solid var(--themeColor);
    box-shadow: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    box-shadow: none;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none;
}

/* Remove button autofocus outline */
button:focus {
    outline: 1px solid var(--themeColor);
    box-shadow: none;
}

/* IMAGE RESET / REBOOT */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-style: none;
}

/* Global Typography */

.main-heading {
    font-family: var(--headingFont);
    font-size: 5rem;
    color: var(--whiteColor);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    z-index: 2;
}

.main-heading .main-heading-dot {
    border-radius: 100%;
    background: var(--themeColor);
    padding: 7px;
    display: inline-block;
}

.sub-heading {
    font-family: var(--headingFont);
    font-size: 2.5rem;
    color: var(--whiteColor);
    font-weight: 700;
    line-height: 1.3;
}

.sub-heading-no-animate {
    font-family: var(--headingFont);
    font-size: 2.5rem;
    color: var(--whiteColor);
    font-weight: 700;
    line-height: 1.3;
}

.sub-heading .sub-heading-dot {
    border-radius: 100%;
    background: var(--themeColor);
    padding: 5px;
    display: inline-block;
}

.sub-title {
    font-family: var(--headingFont);
    font-size: .8rem;
    color: var(--whiteColor);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 400px;
    justify-content: center;
    width: max-content;
    padding: 12px 25px;
    border: 1px solid var(--accentColor);
    border-radius: 100px;
}

/* .sub-title img {
    opacity: 0;
    transform: translateY(-50px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.sub-title img.animate-drop {
    opacity: 1;
    transform: translateY(0);
} */


.sub-title img {
    transform: translateY(-10px);
    /* start just 10px above */
}

.sub-title img.animate-drop {
    animation: subtleBounce 1.2s ease-out forwards;
    /* slightly slower */
}

@keyframes subtleBounce {
    0% {
        transform: translateY(-10px);
    }

    40% {
        transform: translateY(0);
        /* first settle */
    }

    60% {
        transform: translateY(-5px);
        /* first bounce up */
    }

    80% {
        transform: translateY(0);
        /* second settle */
    }

    90% {
        transform: translateY(-2px);
        /* second small bounce */
    }

    100% {
        transform: translateY(0);
        /* final position */
    }
}


.more-text {
    font-family: var(--headingFont);
    font-size: .7rem;
    color: var(--whiteColor);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.more-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 1px;
    width: 0;
    /* start from 0 */
    background: linear-gradient(to right, #64ff37, #64ff37);
    border-radius: 2px;
    transition: width 0.4s ease;
    /* animate width */
    opacity: 1;
}

.more-text:hover::after {
    width: 100%;
}

.more-text i {
    margin-left: 10px;
    font-size: .8rem;
    color: var(--themeColor);
    transition: all 0.3s ease;
    transform: rotate(320deg);
}

.more-text:hover i {
    transform: rotate(360deg);
}

.banner-text {
    font-family: var(--headingFont);
    font-size: 1.2rem;
    color: var(--whiteColor);
    font-weight: 500;
    text-align: center;
    z-index: 2;
}

.body-text {
    font-family: var(--textFont);
    font-size: .9rem;
    color: var(--greyColor);
    font-weight: 400;
    line-height: 2;
}

.body-text-no-animate {
    font-family: var(--textFont);
    font-size: .8rem;
    color: var(--greyColor);
    font-weight: 400;
    line-height: 2;
}

/* Buttons Styling */
.primary-btn {
    font-family: var(--headingFont);
    font-size: 1rem;
    color: var(--whiteColor);
    font-weight: 600;
    text-align: center;
    padding: 8px 20px;
    border-radius: 10px;
    background: var(--buttonBg);
    border: 1px solid var(--themeColor);
    position: relative;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0px 4px rgba(100, 255, 55, 0.4), 0px 3px 20px 0 rgba(100, 255, 55, 0.6);
    overflow: visible;
}

.primary-btn:hover {
    background: var(--themeColor);
    color: var(--blackColor);
    transform: translateY(-2px);
}

.primary-btn i {
    margin-left: 10px;
    font-size: .8rem;
    color: var(--themeColor);
    transition: all 0.3s ease;
    transform: rotate(320deg);
}

.primary-btn:hover i {
    color: var(--blackColor);
    transform: rotate(360deg);
}

.primary-btn:active i {
    color: var(--blackColor);
}

.secondary-btn {
    font-family: var(--headingFont);
    font-size: 1rem;
    color: var(--whiteColor);
    font-weight: 600;
    text-align: center;
    padding: 8px 20px;
    border-radius: 10px;
    background: var(--buttonBg);
    border: 1px solid var(--themeColor);
    position: relative;
    transition: all 0.3s ease;
    position: relative;
}

.secondary-btn:hover {
    background: var(--themeColor);
    color: var(--blackColor);
    transform: translateY(-2px);
    font-weight: 700;
    padding: 8px 17px;
}

.secondary-btn i {
    margin-left: 10px;
    font-size: .8rem;
    color: var(--themeColor);
    transition: all 0.3s ease;
    transform: rotate(320deg);
}

.secondary-btn:hover i {
    color: var(--blackColor);
    transform: rotate(360deg);
}

.secondary-btn:active i {
    color: var(--blackColor);
}

.btn:hover {
    border-color: var(--themeColor);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #000000;
    background-color: var(--themeColor);
    border-color: var(--themeColor);
}

/* Header Btn */

/* ====================================================== */
/* .glow-on-hover {
    width: 180px;
    height: 45px;
    outline: none;
    color: var(--whiteColor);
    background: var(--accentColor);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--themeColor);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.glow-on-hover i {
    margin-left: 10px;
    font-size: .8rem;
    color: var(--themeColor);
    transition: all 0.3s ease;
    transform: rotate(320deg);
}

.glow-on-hover:hover i {
    transform: rotate(360deg);
    color: var(--whiteColor);
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg,
            #1aff1a,
            #64ff37,
            #33cc2b,
            #19aa19,
            #0d660d,
            #64ff37,
            #1aff1a);
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-size: 400%;
    z-index: -1;
    filter: blur(6px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}


.glow-on-hover:active {
    color: #000;
}

.glow-on-hover:active:after {
    background: var(--themeColor);
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accentColor);
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
} */

/* ============================================================= */

/* Header CSS Start */
.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
}

.site-header .navbar {
    padding: 20px 0;
}

.site-header .navbar-nav li .navbar-brand,
.site-header .navbar-nav li .secondary-btn {
    display: none !important;
}

.site-header .navbar-nav {
    border: 1px solid var(--accentColor);
    border-radius: 10px;
    padding: 0px 20px;
    align-items: center;
}

/* ======================== */
.site-header .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    height: 2em;
    overflow: hidden;
}

.nav-link span {
    position: absolute;
    left: 0;
    right: 0;
    transition: transform 0.3s ease;
    display: block;
}

.text-top {
    transform: translateY(0);
}

.text-bottom {
    transform: translateY(100%);
}

.site-header .navbar-nav .nav-link {
    color: var(--whiteColor);
    overflow: hidden;
    display: inline-block;
    padding: 0 40px;
    padding-top: 7px;
}

/* =========================== */

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
    color: var(--themeColor);
}

.navbar-toggler {
    filter: invert(1);
    border: 0;
    padding: 0;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

/* Offcanvas Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--blackColor);
    z-index: 1050;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.offcanvas-close {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--whiteColor);
}

.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offcanvas-nav li a {
    font-size: 1rem;
    color: var(--whiteColor);
    text-decoration: none;
    transition: color 0.3s ease;
}

.offcanvas-nav li a:hover,
.offcanvas-nav li a.active {
    color: var(--themeColor);
}

.offcanvas-nav li a.primary-btn:hover,
.offcanvas-nav li a.primary-btn.active {
    color: black;
}

.offcanvas-nav li a.primary-btn:hover i,
.offcanvas-nav li a.primary-btn.active i {
    color: black;
    transform: unset;
}

.offcanvas-nav .primary-btn:hover {
    background: var(--themeColor);
    color: var(--blackColor);
    box-shadow: 0 0px 4px rgba(100, 255, 55, 0.4), 0px 3px 20px 0 rgba(100, 255, 55, 0.6);
    transform: translateY(-2px);
}

.offcanvas-nav .primary-btn:hover i {
    color: var(--blackColor);
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 1040;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Banner CSS Start */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#stars {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: var(--blackColor);
}

.slider-container .container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
    padding-top: 100px;
    position: relative;
}

.svg-wrapper {
    position: absolute;
    max-width: 550px;
    width: 500px;
    transform-origin: center center;
    animation: rotateAndPulse 5s linear infinite;
    margin-top: -30px;
}

.svg-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes rotateAndPulse {
    0% {
        transform: rotate(0deg);
        width: 400px;
    }

    25% {
        transform: rotate(90deg);
        width: 475px;
    }

    50% {
        transform: rotate(180deg);
        width: 550px;
    }

    75% {
        transform: rotate(270deg);
        width: 475px;
    }

    100% {
        transform: rotate(360deg);
        width: 400px;
    }
}

/* Logos Section CSS Start */
.logos-section {
    background: var(--accentColor);
    position: relative;
    padding: 20px 0;
    margin-bottom: 100px;
}

.logos-section .owl-item img {
    height: 30px;
}

.logos-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: var(--themeColor);
}

.logos-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: var(--themeColor);
}

.logos-section .owl-dots {
    display: none;
}

/* Why Us Section CSS Start */

.why-us {
    margin-bottom: 100px;
}

.why-us .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ==================== */

.why-us .content .sub-heading {
    font-size: 3rem;
    color: var(--greyColor);
}

.why-us .content .span-text {
    color: var(--greyColor);
}

.why-us .content .sub-heading img {
    display: inline-block;
    max-width: 0;
    /* start collapsed */
    max-height: 0;
    /* start collapsed */
    opacity: 0;
    transition: opacity 0.5s ease, max-width 0.4s ease, max-height 0.4s ease;
}


.why-us .content .sub-heading .letter {
    display: inline-block;
    color: var(--greyColor);
    /* initial color for letters */
    transition: color 0.4s ease;
}

/* ===================== */

.content .span-text {
    /* color: var(--themeColor); */
    background: transparent;
    padding: unset;
    border-radius: unset;
    margin-left: 10px;
}

/* Counter Section CSS Start */
.counter-section {
    margin-bottom: 100px;
}

.counter-section .wrapper {
    position: relative;
    padding-left: 30px;
}

.counter-section .wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #64ff37, #000000);
    border-radius: 2px;
}

.counter {
    font-family: var(--textFont);
    font-size: 1.8rem;
    font-weight: 500;
}

.counter .suffix {
    color: var(--themeColor);
}

/* Services Section CSS Start */
.services-section {
    margin-bottom: 100px;
}

.services-section .more-text {
    text-align: right;
    margin-top: 60px;
}

.services-section .services-section-row {
    margin-top: 20px;
}

.services-tabs .services-tabs-wrapper {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.services-tabs .services-tabs-menu {
    width: 35%;
    position: relative;
    justify-content: space-between;
}

.services-tabs .services-tabs-menu .nav-link {
    position: relative;
    z-index: 2;
    height: 70px;
}

.services-tabs .services-tabs-menu .nav-link.active::after {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    right: -22px;
    width: 22px;
    background: var(--accentColor);
    z-index: 1;
    border-top: 1px solid var(--themeColor);
    border-bottom: 1px solid var(--themeColor);
}

.services-tabs .services-tabs-menu .nav-link {
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 25px;
    transition: all 0.3s;
    background: var(--accentColor);
    color: var(--greyColor);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
}

.services-tabs .services-tabs-menu .nav-link.active {
    color: var(--whiteColor);
    border: 1px solid var(--themeColor);
    font-weight: 500;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.services-tabs .services-tabs-menu .nav-link i {
    font-size: 1.6rem;
    width: 40px;
}

.services-tabs .services-tabs-menu .nav-link .fa-mobile-screen-button {
    font-size: 2rem;
}

.services-tabs .services-tabs-menu .nav-link.active i {
    color: var(--themeColor);
}

.services-tabs .services-tabs-content {
    width: 65%;
    margin-bottom: 10px;
    color: var(--greyColor);
    border-radius: 10px;
    position: relative;
}

.services-tabs .services-tabs-content .tab-pane {
    height: 100%;
    padding: 60px;
    padding-bottom: 20px;
    border-radius: 10px;
    padding-right: 110px;
    background: var(--accentColor);
    cursor: pointer;
}

.services-tabs .tab-pane h3 {
    display: none !important;
}

.services-tabs .services-tabs-content .tab-pane.active {
    border: 1px solid var(--themeColor);
}

.services-tabs .tab-pane .icon-box i {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.services-tabs .tab-pane:hover .icon-box i {
    opacity: 1;
    transform: translateY(0);
}

/* FIRST active tab → remove TOP-LEFT radius */
.services-tabs .services-tabs-content .tab-pane:first-child.active {
    border-top-left-radius: 0;
}

/* LAST active tab → remove BOTTOM-LEFT radius */
.services-tabs .services-tabs-content .tab-pane:last-child.active {
    border-bottom-left-radius: 0;
}

.services-tabs .services-tabs-content i {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: var(--themeColor);
    color: var(--blackColor);
    padding: 15px 20px;
    border-radius: 8px;
}

.services-tabs .services-tabs-content i:hover {
    color: var(--blackColor);
}

/* Projects CSS - Card, Carousel, and Dots Only */

.projects-section {
    margin-bottom: 100px;
}

.projects-section .project-section-row {
    margin-top: 150px;
}

.process-section .process-section-row {
    margin-top: 20px;
}

.projects-section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.projects-carousel {
    position: relative;
    min-height: 570px;
    width: 100%;
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.project-card {
    position: absolute;
    width: 100%;
    border-radius: 20px;
    overflow: visible;
    border: 1px solid var(--borderColor);
    transition: all 0.7s ease-in-out;
    opacity: 0;
    transform: scale(0.8) translateY(40px) translateZ(-100px);
    filter: blur(10px);
    z-index: 1;
    background: var(--accentColor);
}

.project-card.active {
    opacity: 1;
    transform: scale(1) translateY(0px) translateZ(0px);
    filter: blur(0px);
    z-index: 5;
}

.project-card .slide-content {
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--accentColor);
    gap: 100px;
    height: unset;
    align-items: center;
    border-radius: 20px;
}

.project-card .slide-content .content-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
}

.project-card .slide-content .content-right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.project-card .slide-content .content-right img {
    text-align: right;
    width: 350px;
}

.project-card .project-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--themeColor);
    margin-bottom: 20px;
}

.project-card .metrics-container {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.project-card .metric-box {
    background: var(--bodyColor);
    border: 1px solid var(--themeColor);
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
    padding: 10px;
}

.project-card .metric-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--themeColor);
    line-height: 1;
}

.project-card .metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--whiteColor);
    margin-top: 5px;
}

.projects-section .project-dots {
    text-align: center;
    /* margin-top: 100px; */
}

.projects-section .project-dots .dot {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin: 0 8px;
    border-radius: 50%;
    background: var(--borderColor);
    cursor: pointer;
    transition: 0.3s ease;
}

.projects-section .project-dots .dot.active {
    background: var(--themeColor);
    transform: scale(1.3);
}

.project-card .body-text {
    display: none;
}

.project-card.active .body-text {
    display: block;
}

.project-card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: var(--accentColor);
    border-radius: 20px;
    border: 1px solid var(--borderColor);
    border-top-color: var(--themeColor);
    border-left: 0;
    border-right: 0;
}

.project-card .top .left {
    display: flex;
    gap: 10px;
}

.project-card .top .left span {
    height: 15px;
    width: 15px;
    border-radius: 100px;
    background: var(--borderColor);
}

.project-card .top img {
    width: 25px;
}

.project-card .bottom {
    background: transparent;
    text-align: center;
    position: relative;
    width: 420px;
    margin: 0 auto;
    position: absolute;
    bottom: -140px;
    left: 0;
    right: 0;
    display: none;
}

.project-card .bottom p {
    color: var(--whiteColor);
    font-family: var(--headingFont);
    font-size: 1rem;
}

/* Process Section CSS Start */
.process-section {
    margin-bottom: 100px;
}


.process-section .box {
    background: var(--accentColor);
    border: 1px solid var(--borderColor);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.process-section .box .border-box {
    border: 1px solid var(--borderColor);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 240px;
    justify-content: center;
    overflow: hidden;
}

.process-section .box .border-box .metrix-box {
    padding: 15px;
    border: 1px solid var(--borderColor);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.process-section .metrix-box {
    display: flex;
    gap: 15px;
}

.process-section .box * {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.process-section .box .border-box .metrix-box .body-text-metrix {
    width: 70px;
    text-align: center;
    border: 1px solid;
    border-radius: 10px;
    padding: 3px;
    transition: 0.3s;
    color: var(--greyColor);
}

.process-section .metrix-box .body-text-metrix:hover {
    color: var(--themeColor);
}

.process-section .metrix-box .body-text-metrix.active {
    color: var(--themeColor) !important;
    background: var(--bodyColor);
}

.process-section .box .content {
    margin-top: 30px;
}

.process-section .box .content h4 {
    margin-bottom: 10px;
    font-weight: 400;
}

.process-section .box .content h4 span {
    color: var(--themeColor);
    font-family: var(--textFont);
}

.process-section .switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 35px;
}

.process-section .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.process-section .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--bodyColor);
    border-radius: 30px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--whiteColor);
    border: 1px solid var(--themeColor);
}

.process-section .slider .on {
    opacity: 0;
    transition: 0.3s;
}

.process-section .slider .off {
    opacity: 1;
    transition: 0.3s;
}

.process-section .slider:before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    left: 5px;
    top: 4px;
    background: var(--themeColor);
    border-radius: 50%;
    transition: 0.3s;
}

.process-section .switch input:checked+.slider {
    background: var(--bodyColor);
}

.process-section .switch input:checked+.slider .on {
    opacity: 1;
}

.process-section .switch input:checked+.slider .off {
    opacity: 0;
}

.process-section .switch input:checked+.slider:before {
    transform: translateX(45px);
}

.process-section .box.box-img .border-box {
    padding-bottom: 0;
    justify-content: end;
}

.process-section .box.box-img .border-box img {
    /* width: 300px; */
    margin: 0 auto;
    margin-bottom: -80px;
}

.process-section .box.box-img-2 .border-box {
    padding: 0;
    gap: 30px;
}

.process-section .box.box-img-2 .border-box .icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Initial state: icons static */
.process-section .box.box-img-2 .border-box .icon-box-1,
.process-section .box.box-img-2 .border-box .icon-box-2 {
    transform: translateX(0);
}

.process-section .box.box-img-2 .border-box .icon-box-2 {
    justify-content: flex-end;
}

/* Animation classes */
.process-section .box.box-img-2 .border-box .icon-box-1.animate {
    animation: moveLeftRight 10s ease-in-out infinite alternate;
}

.process-section .box.box-img-2 .border-box .icon-box-2.animate {
    animation: moveRightLeft 10s ease-in-out infinite alternate;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-150px);
    }
}

@keyframes moveRightLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(150px);
    }
}

/* .process-section .box.box-img-2 .border-box .icon-box-1 :first-child {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.process-section .box.box-img-2 .border-box .icon-box-2 :last-child {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
} */

.process-section .box.box-img-2 .img-box {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    border: 1px solid var(--borderColor);
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-section .box.box-img-2 img {
    width: auto;
    height: auto;
    margin: 0 auto;
}

.process-section .box.box-code .border-box {
    padding: 15px 40px;
}


.process-section .box.box-code .code-typing {
    animation: cursorBlink 0.7s infinite;
}

.process-section .globe-rotate {
    position: relative;
    overflow: hidden;
}

.process-section .globe-rotate::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -35%;
    transform: translateX(-50%);
    width: 110%;
    height: 110%;
    background: url(../images/globe.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    animation: rotateGlobe 30s linear infinite;
    transform-origin: center;
    z-index: 1;
}

@keyframes rotateGlobe {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* .process-section .globe-rotate img {
    width: 100%;
    height: auto;
    display: block;
    animation: rotateGlobe 20s linear infinite;
} */

.box-slides .border-box p {
    font-size: 14px;
    margin-bottom: 4px;
}

/* Track */
.box-slides .progress-track {
    height: 12px;
    border: 1px solid var(--borderColor);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Rocket bar */
.box-slides .progress-fill {
    width: 25%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--accentColor), var(--themeColor));
    position: absolute;
    left: 0;
    cursor: pointer;
}

/* Industries Section CSS Start */
.industries-section {
    margin-bottom: 100px;
    height: 80vh;
}

.industries-section .industries-row {
    margin-top: 20px;
}

.industries-section .box {
    padding: 30px;
    position: relative;
}

.industries-section .box * {
    margin: 0;
}

.industries-section .box {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.5s ease;
}

.industries-section .box .icon-box {
    width: 80px;
    flex-shrink: 0;
}

.industries-section .box .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industries-section .box .icon-box::before {
    content: "";
    position: absolute;
    background: var(--accentColor);
    left: auto;
    right: auto;
    height: 60px;
    width: 60px;
    z-index: -1;
    border-radius: 100px;
    display: none;
}

.industries-section .box .content h5 {
    margin-bottom: 10px;
}

.industries-section .box .content p {
    width: 80%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.industries-section .box:hover .content p {
    max-height: 200px;
    opacity: 1;
}

.industries-section .box.left {
    border-left: 1px solid var(--borderColor);
    justify-content: flex-start;
}

.industries-section .box.left::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--borderColor), var(--blackColor));
}

.industries-section .box.right {
    border-right: 1px solid var(--borderColor);
    justify-content: flex-end;
}

.industries-section .box.right::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--blackColor), var(--borderColor));
}

.industries-section .box.right .content {
    text-align: right;
}

.industries-section .box.right .content p {
    margin-left: auto;
}

.industries-section .box.left:hover {
    border-left: 1px solid var(--themeColor);
}

.industries-section .box.right:hover {
    border-right: 1px solid var(--themeColor);
}

/* FAQS Section CSS Start */
.faqs-section {
    margin-bottom: 100px;
}

.faqs-section .faqs-row {
    margin-top: 20px;
}

.accordion-item {
    background-color: var(--accentColor) !important;
    border-color: var(--borderColor);
    border-bottom: 0;
    position: relative;
}

.accordion-button {
    background-color: var(--accentColor);
    color: var(--whiteColor);
    border: 0;
    box-shadow: none;
    padding: 2rem 3.5rem;
    padding-bottom: 0;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accentColor);
    color: var(--whiteColor);
    border: 0;
    box-shadow: none;
    color: var(--themeColor);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item:last-of-type {
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 2rem;
}

.accordion-body:last-of-type {
    padding-bottom: 0;
}

.accordion-item::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 95%;
    background: var(--borderColor);
    bottom: -15px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 99;
}

.accordion-item:last-of-type::before {
    display: none;
}

.accordion-body {
    padding: 16px 3.5rem;
}

.accordion-body p {
    margin-bottom: 0;
}

.accordion-button::after {
    display: none;
}

.accordion-button::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 30px;
    top: 35px;
    font-size: .8rem;
    color: var(--whiteColor);
    transition: all 0.3s ease;
    transform: rotate(320deg);
}

.accordion-button:not(.collapsed)::before {
    color: var(--themeColor);
    transform: rotate(360deg);
}

/* Footer CSS Start */
.site-footer {
    background: url(../images/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.site-footer .top-row .sub-heading {
    font-size: 4.2rem;
}

.site-footer .top-row {
    border-bottom: 1px solid var(--borderColor);
    padding-top: 50px;
    padding-bottom: 20px;
    cursor: pointer;
}

.site-footer .top-row .email {
    text-align: right;
    font-size: 4.2rem;
    font-weight: 700;
    text-decoration: underline;
}

.site-footer .bottom-row {
    padding: 70px 0;
}

.site-footer .footer-logo img {
    width: 250px;
}

.site-footer .footer-list * {
    color: var(--greyColor);
}

.site-footer .footer-list *:hover {
    color: var(--themeColor);
}



.site-footer .footer-list li {
    display: flex;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
    padding: 3px 0;
}

.site-footer .footer-list li:hover {
    color: var(--greyColor);
}

.site-footer .footer-list li:hover img {
    filter: unset;
}

.site-footer .footer-list li img {
    filter: brightness(0) saturate(100%) invert(55%);
    margin-top: 7px;
}

.site-footer .footer-list {
    padding-left: 0;
}

.site-footer .copyright-row .content p span {
    color: var(--themeColor);
}

.site-footer .copyright-row ul {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.site-footer .footer-list li a:hover .line a {
    color: unset;
}

/* ============================================================== */

/* Inner Pages CSS Start */

/* About Page CSS Start */

.slider-container.inner {
    height: 85vh;
    filter: drop-shadow(2px 10px 5px #ffffff10);
}

.slider-container.inner .banner-text {
    color: var(--greyColor);
}

.inner-btn {
    font-family: var(--headingFont);
    font-size: 1rem;
    color: var(--whiteColor);
    font-weight: 600;
    text-align: center;
    padding: 8px 20px;
    border-radius: 10px;
    background: var(--buttonBg);
    border: 1px solid var(--borderColor);
    position: relative;
    transition: all 0.3s ease;
    position: relative;
}

.inner-btn:hover {
    background: var(--borderColor);
    color: var(--whiteColor);
    transform: translateY(-2px);
    border: 1px solid var(--borderColor);
}

.inner-btn i {
    margin-left: 10px;
    font-size: .8rem;
    color: var(--whiteColor);
    transition: all 0.3s ease;
    transform: rotate(320deg);
}

.inner-btn i.fa-phone-volume {
    transform: unset;
    margin-left: 0;
    margin-right: 10px;
}

.inner-btn:hover i {
    color: var(--whiteColor);
    transform: rotate(360deg);
}

.inner-btn:hover i.fa-phone-volume {
    transform: unset;
}

.inner-btn:active i {
    color: var(--blackColor);
}

.about-section-1 {
    margin: 100px 0;
}

.about-section-1 .bg-logo {
    position: relative;
}

.about-section-1 .bg-logo img {
    position: absolute;
    top: 80px;
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 66px;
    opacity: .3;
}

.about-section-1 .bg-logo .body-text {
    text-align: center;
    padding-top: 50px;
}

.about-section-1 .bg-logo::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 30px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--themeColor), var(--blackColor));
    border-radius: 2px;
}

.about-section-1 .bg-logo::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -25px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--blackColor), var(--themeColor));
    border-radius: 2px;
}

.boxes-section {
    margin-bottom: 100px;
}

.boxes-section .boxes-section-row {
    margin-top: 50px;
}

.boxes-section .boxes-section-row .content {
    padding: 40px;
    padding-bottom: 20px;
    padding-right: 60px;
    border-radius: 10px;
    background: var(--accentColor);
    border: 1px solid var(--borderColor);
}

.boxes-section .boxes-section-row .content h5 {
    margin-top: 30px;
}

.boxes-section .boxes-section-row .content ul {
    padding-left: 0;
}

.projects-cards-2 {
    margin-bottom: 100px;
}

.projects-cards-2 .container {
    background: #0F0F0E;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--borderColor);
    position: relative;
    overflow: hidden;
}

.projects-cards-2 .container::before,
.projects-cards-2 .container::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
}

.projects-cards-2 .container::before {
    left: -450px;
    background: radial-gradient(circle,
            var(--themeColor) 0%,
            rgba(0, 0, 0, 0) 70%);
}

.projects-cards-2 .container::after {
    right: -450px;
    background: radial-gradient(circle,
            var(--themeColor) 0%,
            rgba(0, 0, 0, 0) 70%);
}

.projects-cards-2 .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.projects-cards-2 .content .sub-heading span {
    border-radius: unset;
    background: transparent;
    padding: 0;
    display: inline-block;
    color: var(--themeColor);
    font-weight: 400;
}

.projects-cards-2 .content::before {
    content: url(../images/icons/custom-arrow-curve.svg);
    position: absolute;
    left: 50px;
    top: 110px;
}

.projects-cards-2 .content::after {
    content: url(../images/icons/custom-arrow-curve.svg);
    position: absolute;
    right: 50px;
    top: 110px;
    transform: scalex(-1);
}

.projects-cards-2 img {
    position: relative;
    z-index: 100;
}

.boxes-section-2 {
    margin-bottom: 100px;
}

.boxes-section-2 .boxes-section-2-row {
    margin-top: 50px;
}

.boxes-section-2 .top-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.boxes-section-2 .boxes-section-2-row .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.boxes-section-2 .boxes-section-2-row .content img {
    width: 150px;
    height: 150px;
}

.boxes-section-2 .boxes-section-2-row .content h5 {
    margin-top: 20px;
    font-family: var(--textFont);
    font-weight: 500;
}

.boxes-section-2 .boxes-section-2-row .content p span {
    color: var(--themeColor);
}

.boxes-section-2 .content.center {
    position: relative;
}

.boxes-section-2 .content.center::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--whiteColor), var(--blackColor));
    border-radius: 2px;
}

.boxes-section-2 .content.center::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--whiteColor), var(--blackColor));
    border-radius: 2px;
}

.contact-form-sec {
    margin-bottom: 100px;
}

.contact-form-sec .contact-form-row {
    margin-top: 20px;
}

.form-control::placeholder {
    color: var(--greyColor);
}

.form-control,
.form-select {
    border: 1px solid var(--borderColor);
    background: var(--bodyColor);
    padding: 20px 15px;
    color: var(--whiteColor) !important;
}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus,
a:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--themeColor);
    background: var(--bodyColor);
}

.custom-file-upload {
    width: 100%;
    padding: 24px 12px;
    border-radius: .375rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: var(--themeColor);
    border: 1px solid var(--borderColor);
}

.custom-file-upload img {
    margin: 5px auto;
}

.custom-file-upload .upload-text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--greyColor);
    margin-top: 10px;
}

.custom-file-upload .upload-instruction {
    display: block;
    font-size: 0.75rem;
    color: #393939;
    opacity: 0.7;
}

.selected-file {
    font-size: 0.85rem;
    color: var(--whiteColor);
    opacity: 0.7;
}

.form-check-label {
    color: var(--greyColor);
    margin-left: 10px;
    margin-top: 2px;
}

.form-check-label a {
    color: var(--themeColor);
}

.form-check-input {
    background-color: transparent;
    border: 1px solid var(--greyColor);
    width: 20px;
    height: 20px;
}

.form-check-input:checked {
    background-color: transparent;
    border-color: var(--greyColor);
}

.form-check-input:focus {
    border-color: var(--themeColor);
    outline: 0;
    box-shadow: none;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

/* ======================================================================= */

/* Services Page CSS Start */

.services-main {
    margin-top: 100px;
    margin-bottom: 50px;
}

.top-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services-cards {
    padding: 50px 0;
    position: relative;
    background: var(--bodyColor);
}

.services-cards .box-1 {
    padding-right: 100px;
}

.services-cards .box-1 h4 a {
    color: var(--whiteColor);
}

.services-cards .box-1 i {
    color: var(--themeColor);
    font-size: 30px;
    margin-bottom: 30px;
}

.services-cards .box-wrapper {
    text-align: right !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Animation Initial state Start */
/* .services-cards .left-side-fade {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-cards .right-side-fade {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-cards .left-side-fade.animate-left {
    opacity: 1;
    transform: translateX(0);
}

.services-cards .right-side-fade.animate-right {
    opacity: 1;
    transform: translateX(0);
} */

/* Base state: ready for animation */
.left-side-fade,
.right-side-fade {
    opacity: 0;
}

/* Left elements: arc from top-left */
.left-side-fade.animate-left {
    animation: leftZipperArc 1s ease-out forwards;
}

/* Right elements: arc from top-right */
.right-side-fade.animate-right {
    animation: rightZipperArc 1s ease-out forwards;
}

/* Keyframes for left side */
@keyframes leftZipperArc {
    0% {
        opacity: 0;
        transform: translateY(-40px) translateX(-20px);
    }

    30% {
        opacity: 1;
        /* fully visible */
        transform: translateY(-20px) translateX(-10px);
    }

    60% {
        transform: translateY(-5px) translateX(-3px);
    }

    100% {
        opacity: 1;
        /* ensure stays visible */
        transform: translateY(0) translateX(0);
    }
}

/* Keyframes for right side */
@keyframes rightZipperArc {
    0% {
        opacity: 0;
        transform: translateY(-40px) translateX(20px);
    }

    30% {
        opacity: 1;
        /* fully visible */
        transform: translateY(-20px) translateX(10px);
    }

    60% {
        transform: translateY(-5px) translateX(3px);
    }

    100% {
        opacity: 1;
        /* ensure stays visible */
        transform: translateY(0) translateX(0);
    }
}

/* Optional stagger for sequential zipper effect */
.left-side-fade:nth-child(1) {
    animation-delay: 0s;
}

.left-side-fade:nth-child(2) {
    animation-delay: 0.1s;
}

.left-side-fade:nth-child(3) {
    animation-delay: 0.2s;
}

.right-side-fade:nth-child(1) {
    animation-delay: 0s;
}

.right-side-fade:nth-child(2) {
    animation-delay: 0.1s;
}

.right-side-fade:nth-child(3) {
    animation-delay: 0.2s;
}


/* Animation Initial state End */

.services-cards .more-text {
    text-transform: none;
}

/* .services-cards .more-text::after {
    width: 100%;
} */

.services-cards .box-3 {
    margin-bottom: 1.5rem;
}

.services-cards .box-3 h6 {
    color: var(--themeColor);
    font-size: .8rem;
}

.services-cards .icon-boxes {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.services-cards .icon-boxes i {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--borderColor);
}

.services-cards .hidden-row .content {
    padding: 20px;
    padding-right: 35px;
    border-radius: 10px;
    border: 1px solid var(--borderColor);
    height: 100%;
    background: var(--bodyColor);
}

.services-cards .hidden-row .content h5 {
    font-weight: 500;
}

.services-cards .hidden-row .content .more-text::after {
    display: none;
}

.services-cards .hidden-row .content:hover {
    border: 1px solid var(--themeColor);
}

.services-cards .hidden-row .content:hover .more-text::after {
    display: block;
}

.services-cards .hidden-row .content:hover .more-text i {
    color: var(--whiteColor);
    transform: rotate(360deg);
}

.services-cards .hidden-row {
    margin-top: 20px;
    display: none;
}

.services-cards .hidden-row .content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.services-cards .hidden-row .content.show {
    opacity: 1;
    transform: translateY(0);
}

.services-cards.active {
    background: url(../images/main-services-overlay.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services-cards .bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--blackColor), var(--borderColor), var(--blackColor));
    border-radius: 2px;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.services-cards::before,
.services-cards::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.services-cards::before {
    top: 0;
    background: linear-gradient(to right, var(--themeColor), var(--blackColor));
}

.services-cards::after {
    bottom: 0;
    background: linear-gradient(to right, var(--blackColor), var(--themeColor));
}

.services-cards.active::before {
    opacity: 1;
}

.services-cards.active::after {
    opacity: 1;
}

.services-cards.active .bottom-gradient {
    opacity: 0;
}

.last-service-sec {
    margin-bottom: 100px;
}

/* Inner Services CSS Start */

.content-area-listing {
    margin: 100px 0;
}

.inner-service-list {
    padding-left: 100px;
}

.inner-service-list li {
    list-style-type: disc;
    padding: 12px 0;
    margin: 10px 0;
    color: var(--greyColor);
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.inner-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--themeColor), var(--blackColor));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.inner-service-list li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--themeColor), var(--blackColor));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.inner-service-list li.active {
    color: var(--whiteColor);
}

.inner-service-list li.active::before,
.inner-service-list li.active::after {
    opacity: 1;
}

.inner-service-list li.active::marker {
    color: var(--themeColor);
}

.content-area-listing .content-right h5,
.content-area-listing .content-right h6 {
    color: var(--themeColor);
    margin-bottom: 15px;
}

.content-area-listing .content-right p.body-text:last-of-type {
    position: relative;
    margin-bottom: 50px;
}

.content-area-listing .content-right p.body-text:last-of-type::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            var(--whiteColor),
            var(--blackColor));
    border-radius: 2px;
}

.content-area-listing .content-right .icon-list li {
    position: relative;
}

.content-area-listing .content-right .icon-list li::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-image: url('../images/icons/list-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.inner-service-tabs {
    margin-bottom: 100px;
}

.inner-service-tabs .inner-tabs-row {
    margin-top: 50px;
}

.inner-service-tabs .tabs-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inner-tabs-row .accordion-item {
    display: flex;
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    padding-bottom: 0;
}

.inner-tabs-row .accordion-header {
    display: flex;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--greyColor);
}

.inner-tabs-row .accordion-header .number {
    min-width: 40px;
    text-align: center;
    border-right: 1px solid var(--borderColor);
    color: var(--greyColor);
    font-family: var(--textFont);
    padding: 30px;
    font-size: 1.2rem;
}

.inner-tabs-row .accordion-item.active {
    border-color: var(--themeColor);
    background-image: url(../images/inner-service-tab-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.inner-tabs-row .accordion-item.active .accordion-header {
    color: var(--whiteColor);
    border-color: 1px solid var(--themeColor);
    min-height: 300px;
}

.inner-tabs-row .accordion-header .title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--greyColor);
    padding: 30px;
    min-width: 650px;
    padding-left: 120px;
}

.inner-tabs-row .accordion-item.active .title {
    color: var(--themeColor);
    font-size: 1.5rem;
}

.inner-tabs-row .accordion-content {
    display: none;
    transition: all 0.4s ease;
    padding: 30px;
}

.inner-tabs-row .accordion-item.active .accordion-content {
    display: block;
}

.inner-tabs-row .accordion-item::before {
    display: none !important;
}

.partners-sec {
    margin-bottom: 100px;
}

.partners-sec .container {
    padding: 100px;
    background: #0F0F0E;
    border-radius: 20px;
    border: 1px solid var(--borderColor);
    position: relative;
    overflow: hidden;
}

.partners-sec .container::before,
.partners-sec .container::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .3;
}

.partners-sec .container::before {
    left: 0;
    background: linear-gradient(to right, var(--themeColor), rgba(0, 0, 0, 0));
}

.partners-sec .container::after {
    right: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), var(--themeColor));
}

.partners-sec .partners-row {
    margin-top: 20px;
}

.partners-sec .partners-row .logo-carousel-temp .logo-track img {
    height: 80px;
    margin: 0 15px;
    vertical-align: middle;
}

/* Portfolio Page CSS Start */

.main-portfolio {
    margin: 70px 0;
}

.main-portfolio .portfolio-row {
    margin-top: 50px;
}

.main-portfolio .portfolio-row .col-1,
.main-portfolio .portfolio-row .col-2 {
    margin-bottom: 100px;
}

.main-portfolio .portfolio-row .col-1 .img-wrapper {
    height: 600px;
}

.main-portfolio .portfolio-row .col-1 .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-portfolio .portfolio-row .col-2 .img-wrapper {
    height: 350px;
}

.main-portfolio .portfolio-row .col-2 .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-portfolio .portfolio-row .sub-title {
    color: var(--themeColor);
    margin-top: 20px;
    max-width: unset !important;
}

.main-portfolio .portfolio-row .sub-heading {
    font-size: 1.2rem;
}

.main-portfolio .portfolio-row .body-text {
    width: 70%;
}

.main-portfolio .content span {
    color: var(--themeColor);
    font-weight: bold;
}

.main-portfolio .filter-row {
    position: relative;
}

.main-portfolio .filter-row select {
    padding: 10px 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364ff37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: background 0.2s ease;
}

.main-portfolio .filter-row select:focus {
    outline: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364ff37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    transition: background 0.2s ease;
}

.main-portfolio .filter-row select:focus,
.main-portfolio .filter-row select:active {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364ff37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.main-portfolio .content h2 a {
    color: var(--whiteColor);
}

.main-portfolio .content h2 a:hover {
    color: var(--themeColor);
}

/* Single Portfolio CSS Start */

.single-portfolio-section-1 {
    margin: 100px 0;
}

.single-portfolio-section-1 .sub-title.remove {
    padding: 0;
    border: 0;
    text-transform: none;
    font-size: 1rem;
}

.single-portfolio-section-1 .content .list-items {
    padding-left: 0;
    padding-top: 10px;
    color: var(--greyColor);
}

.gradient-row {
    padding: 100px;
    background: linear-gradient(180deg, #7C60F9, #A030EF);
    border-radius: 10px;
    margin-top: 100px;
}

.gradient-row .sub-title {
    border-color: var(--whiteColor);
}

.gradient-row .body-text {
    color: var(--whiteColor);
    font-size: 1.5rem;
    font-family: var(--headingFont);
}

.single-portfolio-section-2 {
    margin-bottom: 100px;
    padding: 100px 0;
    position: relative;
}

.single-portfolio-section-2::before,
.single-portfolio-section-2::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--blackColor), var(--borderColor), var(--blackColor));
    border-radius: 2px;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.single-portfolio-section-2::before {
    top: 0;
}

.single-portfolio-section-2::after {
    bottom: 0;
}

.single-portfolio-section-2 .bg-row {
    padding: 100px 0;
}

.single-portfolio-section-2 .images-row-1 {
    margin-bottom: 100px;
}

/* .single-portfolio-section-2 .single-portfolio-review {
    margin-bottom: 100px;
} */

.single-portfolio-section-2 .single-portfolio-review .review-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    display: none !important;
}

.single-portfolio-review .review-box .content .body-text {
    color: var(--whiteColor);
    font-family: var(--headingFont);
    font-size: 1rem;
}

.single-portfolio-review .review-box .content h5 {
    color: var(--themeColor);
}

.single-portfolio-review .review-box .content h6 {
    color: var(--greyColor);
    font-family: var(--textFont);
    font-weight: 400;
}

.single-portfolio-section-2 .images-row-2 {
    margin-bottom: 100px;
}

.single-portfolio-section-3 {
    margin-bottom: 100px;
}

.single-portfolio-section-3 .boxes-row {
    margin: 100px 0;
}

.single-portfolio-section-3 .boxes-row .content {
    background: var(--accentColor);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid var(--borderColor);
}

.single-portfolio-section-3 .boxes-row .content img {
    margin-bottom: 20px;
}

.single_portfolio h4 {
    color: var(--themeColor);
}

.single-portfolio-section-4 {
    padding: 100px 0;
    position: relative;
}

.single-portfolio-section-4::before,
.single-portfolio-section-4::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--blackColor), var(--borderColor), var(--blackColor));
    border-radius: 2px;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.single-portfolio-section-4::before {
    top: 0;
}

.single-portfolio-section-4::after {
    bottom: 0;
}

.single-portfolio-section-4 .bg-row {
    margin: 100px 0;
}

.single-portfolio-section-5 {
    padding: 100px 0;
    position: relative;
}

.single-portfolio-section-5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--blackColor), var(--borderColor), var(--blackColor));
    border-radius: 2px;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.single-portfolio-section-6 {
    padding: 100px 0;
    position: relative;
}

.single-portfolio-section-6 .related-portfolio-row {
    padding-top: 30px;
    position: relative;
}

.single-portfolio-section-6 .related-portfolio-row .content .sub-title {
    color: var(--themeColor);
    margin-top: 20px;
    max-width: unset !important;
}

.single-portfolio-section-6 .related-portfolio-row .content .sub-heading-no-animate {
    font-size: 1.2rem;
}

.single-portfolio-section-6 .related-portfolio-row .content .sub-heading-no-animate a {
    color: var(--whiteColor);
}

.single-portfolio-section-6 .related-portfolio-row .content .sub-heading-no-animate a:hover {
    color: var(--themeColor);
}

.single-portfolio-section-6 .related-portfolio-row .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
}

.single-portfolio-section-6 .related-portfolio-row .owl-nav button {
    background: transparent;
    border: 1px solid var(--borderColor);
    border-radius: 100px;
    height: 50px;
    width: 50px;
}

.single-portfolio-section-6 .related-portfolio-row .owl-prev {
    opacity: .5;
}

.single-portfolio-section-6 .related-portfolio-row .owl-prev:hover {
    opacity: 1;
    background: var(--accentColor) !important;
    color: var(--themeColor) !important;
    border: var(--accentColor) !important;
}

.single-portfolio-section-6 .related-portfolio-row .owl-next {
    background: var(--accentColor) !important;
    color: var(--themeColor) !important;
    border: var(--accentColor) !important;
}

.single-portfolio-section-6 #portfolio-related-carousel .owl-stage-outer {
    overflow: visible !important;
    position: relative;
}

.single-portfolio-section-6 #portfolio-related-carousel img {
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.owl-carousel .owl-stage-outer::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 0;
    width: 200px;
    height: 100%;
    background: var(--bodyColor);
    z-index: 3;
}

/* ====================================== */
/* Images Height */

.single-portfolio-section-1 .logo-img {
    width: 200px;
    margin-bottom: 30px;
}

.single-portfolio-section-2 .bg-row .content,
.single-portfolio-section-2 .images-row-1 .content,
.single-portfolio-section-2 .images-row-2 .content,
.single-portfolio-section-2 .images-row-3 .content {
    height: 500px;
}

.single-portfolio-section-2 .content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.single-portfolio-section-3 .images-row-1 .content {
    height: 500px;
}

.single-portfolio-section-3 .images-row-1 .content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.single-portfolio-section-4 .bg-row .content,
.single-portfolio-section-4 .images-row-1 .content {
    height: 500px;
}

.single-portfolio-section-4 .content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Gradient BG Colors */
.gradient-row.vibehub {
    background: linear-gradient(180deg, #ffec3c, #000000);
}

/* ===================================== */



/* Contact Page CSS Start */
body.contact .site-footer {
    display: none;
}

.contact-form-main {
    padding-bottom: 50px;
    background: url("../images/logo-bg.png") top center / contain no-repeat;
    margin-top: 150px;
    position: relative;
}

.contact-form-main .drop-shadow {
    box-shadow: 0px 20px 10px rgba(255, 255, 255, 0.06);
    height: 20px;
    position: absolute;
    top: -80px;
    width: 100%;
}

.contact-form-main .main-heading {
    text-align: left;
}

.contact-form-main .left-content h6 {
    font-weight: 400;
    color: var(--themeColor);
}

.contact-form-main .left-content {
    position: relative;
}

.contact-form-main .left-content .box {
    padding: 20px 0;
    position: relative;
}

.contact-form-main .left-content .box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--whiteColor), var(--blackColor));
    border-radius: 2px;
}

.contact-form-main .left-content .body-text-no-animate a {
    color: var(--whiteColor);
    font-size: 1rem;
}

.contact-form-main .left-content .phone,
.contact-form-main .left-content .email {
    position: relative;
}

.contact-form-main .left-content .phone a::after,
.contact-form-main .left-content .email a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 31%;
    height: 2px;
    background: linear-gradient(to right, var(--themeColor), var(--themeColor));
    border-radius: 2px;
    display: none;
    opacity: 0;
}

.contact-form-main .left-content .phone a,
.contact-form-main .left-content .email a {
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-form-main .left-content .box i {
    transform: rotate(320deg);
    margin-left: 10px;
}

.contact-form-main .left-content .box a i,
.contact-form-main .left-content .box a::after {
    transition: all 0.3s ease;
}

.contact-form-main .left-content .box a:hover i {
    transform: translateX(5px);
}

.contact-form-main .left-content .box a:hover::after {
    display: block;
    opacity: 1;
    transform: translateX(5px);
}

/* Careers Page CSS Start */
.jobs-section-main {
    margin: 100px 0;
}

.job-section-row {
    margin-top: 30px;
    background: var(--accentColor);
    border-radius: 10px;
    border: 1px solid var(--borderColor);
}

/* ================================================== */
.jobs-section-main .job-section-row .col-lg-4.col-md-5.col-12 {
    padding: 0;
}

.job-section-row .left-box {
    border-right: 1px solid var(--borderColor);
}

.jobs-section-main .filter-head {
    border-bottom: 1px solid var(--borderColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 20px 20px 40px;
}

.jobs-section-main .filter-head .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.jobs-section-main .left-box .filter-head h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--whiteColor);
    margin-bottom: 0;
}

.jobs-section-main .accordion {
    border-bottom: 1px solid var(--borderColor);
    padding: 20px 20px 20px 40px;
}

.jobs-section-main .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.jobs-section-main .accordion-header h6 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--whiteColor);
    font-weight: 400;
}

.jobs-section-main .accordion-header .toggle-icon {
    font-size: 40px;
    color: var(--themeColor);
    transition: transform 0.3s ease;
    line-height: .4;
}

.jobs-section-main .accordion-content .box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.jobs-section-main .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.jobs-section-main .accordion-content .box a {
    display: block;
    padding: 3px 15px;
    font-size: 14px;
    color: var(--whiteColor);
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 10px;
    border: 2px solid var(--borderColor);
}

.jobs-section-main .accordion-content .box a:hover,
.jobs-section-main .accordion-content .box a.active {
    background: var(--bodyColor);
    border-color: var(--themeColor);
}

.jobs-section-main .total-box {
    padding: 20px 20px 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jobs-section-main .total-box h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--greyColor);
    margin: 0;
}

.jobs-section-main .total-box p {
    font-size: 1.5rem;
    color: var(--themeColor);
    margin: 0;
}

.jobs-section-main .job-section-row .col-lg-8.col-md-7.col-12 {
    padding: 0;
}

.jobs-section-main .search-box {
    position: relative;
    width: 100%;
}

.jobs-section-main .search-box i {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--themeColor);
    pointer-events: none;
    opacity: 0.7;
}

.jobs-section-main .search-box input {
    width: 100%;
    padding: 19px 20px 20px 70px;
    border: 0;
    border-bottom: 1px solid var(--borderColor);
    color: var(--whiteColor);
    font-size: 14px;
    background: var(--accentColor);
    border-top-right-radius: 10px;
    /* border-bottom-right-radius: 10px; */
}

.jobs-section-main .search-box input::placeholder {
    color: #888;
}

.jobs-section-main .job-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 399px;
    overflow-x: hidden;
    position: relative;
}

.jobs-section-main .job-list li {
    padding: 20px 20px 20px 40px;
    border-bottom: 1px solid var(--borderColor);
    transition: background 0.3s ease;
    transition: all 0.3s ease;
}

.jobs-section-main .job-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jobs-section-main .job-list li h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: var(--whiteColor);
}

.jobs-section-main .job-list li p {
    margin: 0;
    font-size: 14px;
    color: var(--greyColor);
}

.jobs-section-main .job-list li i {
    color: var(--greyColor);
    transition: all 0.3s ease;
    transform: rotate(320deg);
    font-size: 1.2rem;
}

.jobs-section-main .job-list li:hover {
    background: rgba(100, 255, 55, 0.05);
    background: linear-gradient(to right, #080807, #141712);
}

.jobs-section-main .job-list li:hover h3 {
    color: var(--themeColor);
}

.jobs-section-main .job-list li:hover p {
    color: var(--whiteColor);
}

.jobs-section-main .job-list li:hover i {
    transform: rotate(360deg);
    color: var(--themeColor);
}

/* ===================================================== */

/* Resource Page CSS Start */

.main-blog {
    margin: 100px 0;
}

#blog-listing .row {
    margin-top: 50px;
}

#blog-listing .row .img-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

#blog-listing .row .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#blog-listing .row .content .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#blog-listing .row .content .wrap .sub-title {
    max-width: unset !important;
}

#blog-listing .row.flex-row-reverse .content .wrap {
    flex-direction: row-reverse;
}

#blog-listing .row .content {
    padding-right: 50px;
    text-align: left;
}

#blog-listing .row.flex-row-reverse .content {
    padding-left: 50px;
    text-align: right;
}

#blog-listing .row .content .body-text {
    margin-top: 10px;
}

#blog-listing .row .content .sub-title:hover {
    color: var(--themeColor);
}

#blog-listing .row .content .date {
    color: var(--themeColor);
    font-weight: 400;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--textFont);
    font-size: .9rem;
}

#blog-listing .row .content .date i {
    margin-right: 10px;
}

#blog-listing .row .content .sub-heading {
    font-size: 1.5rem;
}

#blog-listing .row .content .sub-heading:hover {
    color: var(--themeColor);
}

#blog-listing .row .content .more-text {
    text-transform: capitalize;
}

/* Blog Single Page CSS Start */
.blog-single-banner {
    height: 100vh !important;
    filter: unset !important;
    position: relative;
}

.blog-single-banner .drop-shadow {
    box-shadow: 0px 20px 10px rgba(255, 255, 255, 0.06);
    height: 20px;
    position: absolute;
    top: 65px;
    width: 100%;
    z-index: 2;
}

.blog-single-banner #stars {
    background: var(--bodyColor) !important;
}

.blog-single-banner .slide-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 150px;
}

.img-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.img-wrapper .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog-details-content {
    padding: 50px 0 100px 0;
}

.post .content .date {
    color: var(--themeColor);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--textFont);
    font-size: .9rem;
}

.post .content .date i {
    margin-right: 10px;
}

.post .content ul {
    padding-left: 0;
}

.post .content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: .9rem;
    color: var(--greyColor);
}

.post .content strong {
    color: var(--whiteColor);
}

.post .content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url('../images/icons/single-page-list-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Privacy and Terms CSS Start */

.privacy-terms {
    padding-top: 150px;
    padding-bottom: 100px;
}

.privacy-terms .content {
    text-align: left !important;
}

/* Navbar Sticky Desktop CSS Start */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: all 0.3s ease;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px); */
    transform: translateY(0);
}

.site-header.sticky .navbar-nav {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border: 1px solid var(--borderColor) !important;
    /* background: var(--accentColor); */
    background: #141712bf;
}

.site-header.hide {
    transform: translateY(-100%);
}

.site-header.sticky .navbar-brand {
    display: none;
}

.site-header.sticky .secondary-btn {
    display: none !important;
}

.site-header.sticky li .navbar-brand {
    display: block !important;
}

.site-header.sticky li .navbar-brand img {
    width: 25px;
}

.site-header.sticky li.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.site-header.sticky li.button {
    margin-left: 30px;
}

.site-header.sticky li .secondary-btn {
    display: block !important;
    padding: 3px 10px;
    border-radius: 7px;
}

.site-header.sticky li .secondary-btn {
    font-weight: 600;
}

.site-header.sticky .navbar-nav {
    border: 1px solid #D0D1D0;
}

/* ================ */
.site-footer .top-row .content {
    position: relative;
}

.footer-heading-animation {
    margin: 0;
    padding: 0;
    font-size: 6em;
    color: transparent;
    text-transform: uppercase;
    display: inline;
}

.footer-heading-animation span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--whiteColor);
    transition: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    overflow: hidden;
    font-family: var(--headingFont);
}

.footer-heading-animation:hover span:nth-child(1),
.site-footer .top-row:hover span:nth-child(1) {
    transform: translateY(-18px);
}

.footer-heading-animation span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--whiteColor);
    transition: 0.5s;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    overflow: hidden;
    font-family: var(--headingFont);
}

.footer-heading-animation:hover span:nth-child(2),
.site-footer .top-row:hover span:nth-child(2) {
    transform: translateY(18px);
}

.footer-heading-animation span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scaleY(0);
    width: 84.5%;
    color: var(--themeColor);
    background: transparent;
    font-size: 0.25em;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-align: center;
    padding-left: 0;
    margin-left: 5px;
    transition: 0.5s;
    font-family: var(--headingFont);
    border-radius: 5px;
}

.footer-heading-animation:hover span:nth-child(3),
.site-footer .top-row:hover span:nth-child(3) {
    transform: translateY(-50%) scaleY(1);
}

/* ============ */

.logo-carousel-temp {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.logo-carousel-temp .logo-track {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scrollLogosRTL 40s linear infinite;
}

/* Fade effect on left and right edges */
.logo-carousel-temp::before,
.logo-carousel-temp::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-temp .logo-track img {
    height: 40px;
    margin: 0 60px;
    vertical-align: middle;
}

@keyframes scrollLogosRTL {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}