@charset "UTF-8";
/*======================================================================================
Company: Softquix Infoway
Founder & CEO: Parth Prajapati
Website: https://softquix.com/
Description: Softquix Infoway - Enterprise IT Solutions & Custom Software Development
Copyright © 2026 Softquix Infoway. All Rights Reserved.
=======================================================================================*/
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #F94D00;
    --header: #0B0D17;
    --text: #534F5A;
    --border: #02060A;
    --bg: #EFEDE5;
    --bg2: #0F172A;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "Inter", sans-serif;
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body), "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
    background-color: var(--bg);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 95%;
    text-transform: capitalize;
}

@media (max-width: 1399px) {
    h1 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 60px;
        line-height: 130% !important;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 55px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 44px;
    }
}

@media (max-width: 470px) {
    h1 {
        font-size: 34px;
    }
}

h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 117%;
}

@media (max-width: 1399px) {
    h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    h2 {
        font-size: 30px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 133%;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
}

.theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    padding: 16px 40px 14px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    gap: 5px;
    text-align: center;
    background-color: var(--theme);
    z-index: 1;
    border-radius: 100px;
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn::before {
    content: "";
    background-color: var(--header);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.theme-btn:hover::before {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
    transition-delay: 200ms;
}

.theme-btn::after {
    content: "";
    background-color: rgba(11, 13, 23, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.theme-btn:hover::after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.theme-btn span {
    font-size: 16px;
    position: relative;
    top: -1px;
    font-weight: 700;
    transition: all 500ms ease;
}

.theme-btn:hover {
    color: var(--white);
}

.theme-btn:hover img {
    filter: brightness(0);
}

.link-btn {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
}

.link-btn i {
    margin-left: 5px;
    color: var(--theme);
}

.tw-hover-btn {
    position: relative;
    overflow: hidden;
}

.theme-btn-main {
    width: 166px;
    height: 166px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.theme-btn-text,
.theme-btn-icon {
    position: relative;
    z-index: 3;
}

.tw-btn-circle-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--theme);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 1;
    bottom: -15px;
}

/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    border: none;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li .submenu li a {
    border-bottom: none !important;
    font-size: 14px;
    padding: 6px 0;
    color: var(--header);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background-color: #07030c;
}

.preloader .animation-preloader {
    z-index: 1000;
    text-align: center;
    position: relative;
}

.sq-loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sq-loader-rings {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sq-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sq-ring-outer {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 95, 31, 0.45);
    border-top-color: #ff5f1f;
    border-bottom-color: #ff5f1f;
    animation: sqSpinClockwise 3.5s linear infinite;
    box-shadow: 0 0 25px rgba(255, 95, 31, 0.2);
}

.sq-ring-inner {
    width: 82%;
    height: 82%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-left-color: #ff8c5a;
    border-right-color: #ff8c5a;
    animation: sqSpinCounterClockwise 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.sq-core-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 95, 31, 0.2) 0%, rgba(7, 3, 12, 0.95) 75%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.35);
    animation: sqPulseCore 2s ease-in-out infinite alternate;
}

.sq-core-logo img {
    width: 58px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 95, 31, 0.8));
}

@keyframes sqSpinClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes sqSpinCounterClockwise {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes sqPulseCore {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 15px rgba(255, 95, 31, 0.25);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 95, 31, 0.6);
    }
}

.preloader .animation-preloader .txt-loading {
    font: 700 2.8em "Plus Jakarta Sans", sans-serif;
    text-align: center;
    user-select: none;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2em;
        letter-spacing: 4px;
    }

    .sq-loader-rings {
        width: 105px;
        height: 105px;
    }

    .sq-core-logo {
        width: 65px;
        height: 65px;
    }

    .sq-core-logo img {
        width: 46px;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.15s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.3s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.45s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.75s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.9s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.05s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: sqLettersGlow 2.5s infinite;
    color: #ff5f1f;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    position: absolute;
    top: 0;
    text-shadow: 0 0 15px rgba(255, 95, 31, 0.8), 0 0 30px rgba(255, 95, 31, 0.4);
}

@keyframes sqLettersGlow {

    0%,
    100% {
        opacity: 0;
        transform: translateY(4px);
    }

    30%,
    70% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sq-loader-bar {
    width: 220px;
    max-width: 80vw;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 14px;
    position: relative;
}

.sq-loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #e0480b, #ff5f1f, #ffaa80);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 95, 31, 0.9);
    animation: sqProgress 2s ease-in-out infinite;
}

@keyframes sqProgress {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

.sq-loader-tag {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin: 0 !important;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: #07030c;
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transform: scale(0.95);
    transition: 0.4s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.2s all cubic-bezier(0.77, 0, 0.175, 1);
}

.back-to-top {
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 40px;
    border-radius: 100px;
    color: var(--white);
    font-size: 16px;
    position: fixed;
    display: inline-block;
    z-index: 9999;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

@media (max-width: 575px) {
    .back-to-top {
        display: none;
    }
}

.back-to-top:hover {
    background-color: var(--white);
    color: var(--theme);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.cursor-outer {
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    background-color: var(--theme);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
    opacity: 0.14;
}

.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
}

.cursor-inner {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--theme);
    opacity: 1;
    -webkit-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
    color: var(--text);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.cursor-inner.cursor-big span {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    -webkit-margin-start: -10px;
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme);
    border: 1px solid #686363;
    opacity: 0;
}

.search_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header);
    z-index: 100;
    padding-top: 70px;
    padding-bottom: 100px;
    opacity: 0;
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: all 0.6s ease;
}

.search_popup.search-opened {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0s;
    z-index: 999999;
}

.search_popup.search-opened .search_form .search_input {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
    width: 100%;
    transition-delay: 0.5s;
}

@media (max-width: 575px) {
    .search_popup {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}

.search_wrapper .search_top {
    margin-bottom: 80px;
}

.search_wrapper .search_top .search_logo {
    max-width: 200px;
}

.search_wrapper .search_top .search_logo a {
    display: block;
}

@media (max-width: 575px) {
    .search_wrapper .search_top .search_logo {
        max-width: 150px;
    }
}

.search_wrapper .search_top .search_close {
    margin-left: auto;
    margin-top: 10px;
}

.search_wrapper .search_top .search_close .search_close_btn {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 35px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
}

.search_wrapper .search_top .search_close .search_close_btn svg {
    width: 30px;
    height: 30px;
}

.search_wrapper .search_top .search_close .search_close_btn:hover {
    color: var(--white);
    transform: rotate(90deg);
}

@media (max-width: 575px) {
    .search_wrapper .search_top {
        margin-bottom: 50px;
    }
}

@media (max-width: 500px) {
    .search_wrapper .search_top {
        margin-bottom: 40px;
    }
}

.search_wrapper .search_form .search_input {
    position: relative;
    height: 80px;
    transform: translateY(-40px);
    transition: all 0.4s ease-in-out;
    transition-delay: 0.5s;
    opacity: 0;
}

.search_wrapper .search_form .search_input::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition-delay: 0.3s;
    transition: all 0.4s ease-in-out;
}

.search_wrapper .search_form .search_input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: var(--text);
    border-bottom: 1px solid transparent;
    padding: 0;
    padding-right: 30px;
}

.search_wrapper .search_form .search_input input::placeholder {
    font-size: 24px;
}

.search_wrapper .search_form .search_input input~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: all 0.5s;
}

.search_wrapper .search_form .search_input input:focus~.search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.5s;
}

@media (max-width: 575px) {
    .search_wrapper .search_form .search_input input {
        font-size: 20px;
    }

    .search_wrapper .search_form .search_input input::placeholder {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    .search_wrapper .search_form .search_input input {
        font-size: 18px;
    }

    .search_wrapper .search_form .search_input input::placeholder {
        font-size: 18px;
    }
}

.search_wrapper .search_form .search_input button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--white);
}

.search-popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    cursor: zoom-out;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.search-popup-overlay.search-popup-overlay-open {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.35s;
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes gelatine {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.7, 1.1);
    }

    50% {
        transform: scale(1.1, 0.7);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.5);
    }
}

@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }

    20% {
        transform: translateX(-50px);
    }

    50% {
        transform: translatey(-40px);
    }

    100% {
        transform: translatey(0px);
    }
}

/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes scale {
    0% {
        top: -1000px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.animation-infinite {
    animation: ShapeAnim 50s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top left 3000px;
    }
}

.splt-txt .whitespace {
    width: 8px;
}

.splt-txt.animated .char {
    -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
    width: 20px;
}

@media (max-width: 991px) {
    .splt-txt-bounce .whitespace {
        width: 10px;
    }
}

.splt-txt-bounce.animated .char {
    -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

@keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

/* CSS */
.text-anims {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.text-anims.show {
    opacity: 1;
    transform: scale(1);
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
    background-color: var(--theme);
    position: relative;
    margin-bottom: 30px;
}

.header-top-section .container-fluid {
    padding: 0 30px;
}

@media (max-width: 575px) {
    .header-top-section .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 1399px) {
    .header-top-section {
        display: none;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

.header-top-wrapper .header-left .list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper .header-left .list li {
    color: var(--white);
}

.header-top-wrapper .header-left .list li i {
    margin-right: 5px;
}

.header-top-wrapper .header-left .list li a {
    color: var(--white);
}

.header-top-wrapper .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper .header-right span {
    color: var(--white);
}

.header-top-wrapper .header-right span i {
    margin-right: 5px;
}

.header-top-wrapper .header-right .social-icon {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-top-wrapper .header-right .social-icon a {
    color: var(--theme);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--white);
    opacity: 0.6;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-size: 16px;
    border-radius: 100px;
}

.header-top-wrapper .header-right .social-icon a:hover {
    background-color: var(--white);
    opacity: initial;
    color: var(--header);
}

@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 50px;
}

@media (max-width: 1199px) {
    .header-main .main-menu ul li {
        margin-inline-end: 30px;
    }
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 14px;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme);
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 260px;
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 6px solid var(--theme);
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.34px;
    color: var(--header);
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    padding-right: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme);
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
    color: var(--theme) !important;
    margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
    width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
    width: 1000px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
    width: 100%;
    padding: 0 12px;
}

@media (max-width: 1399px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
        font-size: 14px;
        min-width: 140px;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 18px 30px;
    justify-content: center;
    line-height: 1;
    color: var(--white) !important;
    position: relative;
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -11;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--header);
    transition: all 0.4s ease-in-out;
    border-radius: 100px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
    display: none;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
}

.header-main .main-menu ul li:hover>a {
    color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-main .header-right {
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 100px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .header-right .menu_search .search_btn {
    color: rgba(255, 255, 255, 0.7);
}

.header-main .header-right .header-btn {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1399px) {
    .header-main .header-right .header-btn {
        gap: 16px;
    }
}

.header-main .header-right .header-btn h6 {
    color: rgba(255, 255, 255, 0.8);
}

.header-main .header-right .header-btn h6 i {
    color: var(--theme);
    margin-right: 10px;
}

@media (max-width: 1600px) {
    .header-main .header-right .header-btn h6 {
        display: none;
    }
}

.header-main .header-right .header-btn h6 a {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1399px) {
    .header-main .header-right .header-btn .header-button {
        display: none;
    }
}

.header-main .header-right .header-btn .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--white);
}

.header-1 {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    margin-top: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1399px) {
    .header-1 {
        top: 0;
        margin-top: 0;
    }
}

.header-1 .container-fluid {
    padding: 0 30px;
}

@media (max-width: 575px) {
    .header-1 .container-fluid {
        padding: 0 15px;
    }
}

.header-1 .header-main .header-left .header-logo-2 {
    display: none;
}

.header-1.header-2 {
    margin-top: 30px;
    border-bottom: none;
}

.header-1.header-2 .header-main {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    padding: 0 20px;
    border-radius: 100px;
}

@media (max-width: 1399px) {
    .header-1.header-2 .header-main {
        background-color: transparent;
        padding: 10px 0;
        border-radius: 0;
        backdrop-filter: initial;
    }
}

.header-1.header-2 .header-main .header-right {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 1399px) {
    .header-1.header-2 .header-main .header-right {
        gap: 30px;
    }
}

.header-1.header-4 {
    margin-top: 0;
}

.header-1.header-4 .header-main {
    background-color: var(--white);
    padding: 10px 30px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.header-1.header-4 .header-main .main-menu ul li a {
    color: var(--header);
}

.header-1.header-4 .header-main .header-right .menu_search .search_btn {
    color: var(--header);
}

.header-1.header-4 .header-main .header-right .header-btn .sidebar__toggle {
    color: var(--header);
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 {
    margin-top: 0;
}

.sticky.header-1 .header-main .header-left .header-logo {
    display: none;
}

.sticky.header-1 .header-main .header-left .header-logo-2 {
    display: block;
}

.sticky.header-1 .header-main .main-menu ul li a {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .menu_search .search_btn {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn h6 {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn h6 a {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn .sidebar__toggle {
    color: var(--header);
}

.sticky.header-2 {
    margin-top: 0;
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 450px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
        display: none;
    }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
    margin-bottom: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 0;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
        font-size: 14px;
    }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
        margin-bottom: 20px;
    }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 20px 40px;
    text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 100%;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: #000;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
    margin-top: 0;
    background: #09060f !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1399px) {
    .breadcrumb-wrapper {
        margin-top: 0;
    }
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background:
        radial-gradient(ellipse 65% 80% at 50% 0%, rgba(255, 95, 31, 0.16) 0%, transparent 65%),
        radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    z-index: 1;
    pointer-events: none;
}

.breadcrumb-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    max-width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 31, 0.8), transparent);
    box-shadow: 0 0 12px rgba(255, 95, 31, 0.6);
    z-index: 10;
    pointer-events: none;
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 130px 0 65px;
    z-index: 9;
    text-align: center;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        padding-top: 110px;
        padding-bottom: 55px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        padding-top: 95px;
        padding-bottom: 45px;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    font-size: 48px;
    position: relative;
    color: #ffffff;
    z-index: 9;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 16px;
    background: none;
    -webkit-text-fill-color: initial;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    list-style: none;
    transition: all 0.3s ease;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: #ff5f1f;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li {
        font-size: 13px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
    color: #ff5f1f;
    font-size: 12px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: #ffffff;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li:not(:first-child):not(:last-child) {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    padding: 0 2px;
}

.error-items {
    text-align: center;
    position: relative;
    margin-top: -40px;
}

@media (max-width: 1399px) {
    .error-items {
        margin-top: 0;
    }
}

.error-items .error-image {
    margin-bottom: 30px;
}

.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.error-items h2 {
    font-size: 72px;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .error-items h2 {
        font-size: 30px;
    }
}

.error-items p {
    max-width: 722px;
    margin: 0 auto 40px;
}

@media (max-width: 767px) {
    .error-items p {
        margin-bottom: 30px;
    }
}

.footer-widget-wrapper {
    padding: 90px 0 120px;
}

@media (max-width: 1399px) {
    .footer-widget-wrapper {
        padding: 70px 0 100px;
    }
}

@media (max-width: 991px) {
    .footer-widget-wrapper {
        padding: 50px 0 80px;
    }
}

.footer-widget-wrapper.style-4 {
    padding: 190px 0 120px;
}

@media (max-width: 1399px) {
    .footer-widget-wrapper.style-4 {
        padding: 70px 0 100px;
    }
}

@media (max-width: 991px) {
    .footer-widget-wrapper.style-4 {
        padding: 50px 0 80px;
    }
}

.footer-widget-wrapper .footer-widget-items {
    margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .widget-head {
    margin-bottom: 30px;
}

.footer-widget-wrapper .footer-widget-items .widget-head h3 {
    color: var(--white);
}

.footer-widget-wrapper .footer-widget-items .footer-content p {
    color: var(--white);
    opacity: 0.8;
    max-width: 352px;
    margin-bottom: 30px;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    left: 1098.76px;
    opacity: 0.6;
    color: var(--header);
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.footer-widget-wrapper .footer-widget-items .list-area li a {
    color: var(--white);
    opacity: 0.8;
}

.footer-widget-wrapper .footer-widget-items .list-area li a:hover {
    color: var(--theme);
    margin-left: 4px;
}

.footer-widget-wrapper .footer-widget-items .list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widget-wrapper .footer-widget-items .contact-item form {
    position: relative;
    margin-bottom: 15px;
}

.footer-widget-wrapper .footer-widget-items .contact-item form input {
    width: 100%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
}

.footer-widget-wrapper .footer-widget-items .contact-item form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-widget-wrapper .footer-widget-items .contact-item .theme-btn {
    border-radius: 8px;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    left: 1098.76px;
    opacity: 0.6;
    color: var(--header);
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.footer-widget-wrapper .footer-widget-items .contact-content h6 {
    color: rgba(255, 255, 255, 0.7);
    line-height: 162%;
}

.footer-widget-wrapper .footer-widget-items .contact-content h6 a {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1399px) {
    .footer-widget-wrapper .footer-widget-items .contact-content h6 br {
        display: none;
    }
}

.footer-widget-wrapper.style-wrapper-3 {
    padding: 70px 0 60px;
}

@media (max-width: 991px) {
    .footer-widget-wrapper.style-wrapper-3 {
        padding: 50px 0 60px;
    }
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .widget-head h3 {
    color: var(--header);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content p {
    color: rgba(2, 6, 10, 0.7);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon a {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    opacity: initial;
    color: #fff;
    background-color: #02060A;
    text-align: center;
    opacity: 0.6;
    text-align: center;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .list-area li a {
    color: rgba(2, 6, 10, 0.7);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .list-area li:hover a {
    color: var(--theme);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form {
    position: relative;
    margin-bottom: 15px;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form input {
    width: 100%;
    border: none;
    border: 1px solid rgba(2, 6, 10, 0.1);
    backdrop-filter: blur(16px);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(2, 6, 10, 0.7);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form input::placeholder {
    color: rgba(2, 6, 10, 0.7);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn {
    background-color: var(--header);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn::after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn:hover {
    color: var(--white);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

@media (max-width: 767px) {
    .footer-bottom-wrapper {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }
}

.footer-bottom-wrapper p {
    color: rgba(255, 255, 255, 0.87);
}

.footer-bottom-wrapper p span {
    color: var(--theme);
}

.footer-bottom-wrapper .footer-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-wrapper .footer-list li a {
    color: rgba(255, 255, 255, 0.87);
}

.footer-bottom-wrapper .footer-list li a:hover {
    color: var(--theme);
}

.footer-bottom-wrapper.style-3 {
    border-top: 1px solid rgba(2, 6, 10, 0.1);
}

.footer-bottom-wrapper.style-3 p {
    color: var(--header);
}

.footer-bottom-wrapper.style-3 p span {
    color: var(--theme);
}

.footer-bottom-wrapper.style-3 .footer-list li a {
    color: var(--header);
}

.footer-section {
    padding-bottom: 0;
}

.footer-section.style-2 {
    padding-bottom: 0;
}

@media (max-width: 1399px) {
    .footer-section {
        padding-bottom: 0;
    }
}

.footer-area {
    margin: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    .footer-area {
        margin: 0;
    }
}

.footer-newsletter-box {
    padding: 50px 50px 50px 42px;
    backdrop-filter: blur(16px);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .footer-newsletter-box {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }
}

.footer-newsletter-box h2 {
    color: var(--white);
    position: relative;
}

@media (max-width: 1399px) {
    .footer-newsletter-box h2 br {
        display: none;
    }
}

.footer-newsletter-box .newsletter-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1399px) {
    .footer-newsletter-box .newsletter-content {
        flex-wrap: wrap;
    }
}

.footer-newsletter-box .newsletter-content form {
    position: relative;
}

.footer-newsletter-box .newsletter-content form input {
    width: 100%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
    width: 376px;
}

@media (max-width: 767px) {
    .footer-newsletter-box .newsletter-content form input {
        width: 250px;
    }
}

.footer-newsletter-box .newsletter-content form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-box .newsletter-content .theme-btn {
    border-radius: 8px;
}

.footer-section-3 {
    position: relative;
}

.footer-section-3 .bottom-shape {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }

    .section-title br {
        display: none;
    }
}

.section-title .sub-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--header);
    opacity: 0.8;
    background: var(--white);
    padding: 6px 9px;
    display: inline-block;
    border-radius: 100px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
}

.section-title .sub-title img {
    line-height: 1;
    margin-right: 5px;
    margin-top: -3px;
}

.section-title .sub-title.style-2 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.section-title .sub-title.style-3 {
    background: #EFEDE5;
    backdrop-filter: blur(16px);
}

.section-title h2 {
    color: var(--header);
}

.section-title h2.text-white,
.section-title h2.text-white div,
.section-title h2.text-white span,
.section-title.text-white h2,
.section-title.text-white h2 div,
.section-title.text-white h2 span,
.faq-section .section-title h2,
.faq-section .section-title h2 div,
.faq-section .section-title h2 span,
.news-section .section-title h2,
.news-section .section-title h2 div,
.news-section .section-title h2 span,
.testimonial-section .section-title h2,
.testimonial-section .section-title h2 div,
.testimonial-section .section-title h2 span,
.team-section .section-title h2,
.team-section .section-title h2 div,
.team-section .section-title h2 span,
.counter-section .section-title h2,
.counter-section .section-title h2 div,
.counter-section .section-title h2 span,
.hero-section .section-title h2,
.hero-section .section-title h2 div,
.hero-section .section-title h2 span {
    color: #ffffff !important;
}

.faq-section .section-title .sub-title,
.news-section .section-title .sub-title,
.testimonial-section .section-title .sub-title,
.team-section .section-title .sub-title {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.section-title h2 span {
    color: rgba(15, 23, 42, 0.3);
}

@media (max-width: 1399px) {
    .section-title h2 br {
        display: none;
    }
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section-title-area {
        margin-bottom: 0;
    }

    .section-title-area br {
        display: none;
    }
}

@media (max-width: 1399px) {
    .section-title-area p br {
        display: none;
    }
}

.section-title-area .section-title {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg);
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

/*---------------------------------------
05. Sections
---------------------------------------*/
@media (max-width: 1399px) {
    .about-wrapper {
        margin-top: 30px;
    }
}

.about-wrapper .about-image {
    overflow: hidden;
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-wrapper .about-content {
    margin-left: 25px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content {
        margin-left: 0;
    }
}

.about-wrapper .about-content .about-item {
    display: flex;
    align-items: start;
    gap: 55px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-item {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 0;
    }
}

.about-wrapper .about-content .about-item .count-item {
    min-width: 260px;
}

.about-wrapper .about-content .about-item .count-item h2 {
    color: var(--theme);
    font-size: 134px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-item .count-item h2 {
        font-size: 80px;
    }
}

.about-wrapper .about-content .about-item .count-item h5 {
    line-height: 156%;
}

.about-wrapper .about-content .about-item .content-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.about-wrapper .about-content .about-item .content-box p {
    margin-bottom: 15px;
}

.about-wrapper .about-content .about-item .content-box p span {
    color: var(--header);
    text-decoration: underline;
}

.about-wrapper .about-content .about-item .content-box .theme-btn {
    margin-top: 5px;
    display: inline-block;
}

.about-section .section-title {
    display: block !important;
    text-align: center !important;
    max-width: 950px !important;
    margin: 0 auto 40px auto !important;
}

.about-section .section-title .sub-title {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 16px !important;
}

.about-section .section-title h2 {
    text-align: center !important;
    margin: 0 auto !important;
}

.about-wrapper .about-image {
    max-width: 548px;
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-image {
        max-width: initial;
    }
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-wrapper .about-content .text {
    margin-top: 20px;
    max-width: 533px;
    margin-bottom: 30px;
}

.about-wrapper .about-content .about-list {
    margin-bottom: 30px;
}

.about-wrapper .about-content .about-list li {
    color: var(--header);
    font-weight: 600;
}

.about-wrapper .about-content .about-list li:not(:last-child) {
    margin-bottom: 10px;
}

.about-wrapper .about-content .about-list li i {
    margin-right: 10px;
    color: var(--theme);
}

.about-wrapper-3 .about-image {
    margin-left: -275px;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 1899px) {
    .about-wrapper-3 .about-image {
        margin-left: -135px;
    }
}

@media (max-width: 1600px) {
    .about-wrapper-3 .about-image {
        margin-left: -41px;
    }
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-image {
        margin-left: 0;
    }
}

.about-wrapper-3 .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.about-wrapper-3 .about-content {
    margin-left: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content {
        margin-left: 0;
    }
}

.about-wrapper-3 .about-content .text {
    margin-top: 20px;
    max-width: 533px;
    border-bottom: 1px solid rgba(2, 6, 10, 0.1);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content .text {
        margin-bottom: 30px;
    }
}

.about-wrapper-3 .about-content .progress-item {
    margin-bottom: 48px;
    display: flex;
    gap: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content .progress-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper-3 .about-content .progress-item {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.about-wrapper-3 .about-content .progress-item .pro-items {
    width: 100%;
}

.about-wrapper-3 .about-content .progress-item .pro-items:not(:last-child) {
    margin-bottom: 20px;
}

.about-wrapper-3 .about-content .progress-item .pro-items .pro-head {
    margin-bottom: 10px;
}

.about-wrapper-3 .about-content .progress-item .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
    margin-bottom: 15px;
    margin-top: 10px;
}

.about-wrapper-3 .about-content .progress-item .pro-items .pro-head .point {
    font-size: 56px;
    font-weight: 600;
    color: var(--header);
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content .progress-item .pro-items .pro-head .point {
        font-size: 50px;
    }
}

.about-wrapper-3 .about-content .progress-item .pro-items .progress {
    background: var(--white);
    justify-content: flex-start;
    border-radius: 10px;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
}

.about-wrapper-3 .about-content .progress-item .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 10px;
    background: var(--theme);
    height: 6px;
    width: 0;
}

.about-wrapper-3 .about-content .progress-item .pro-items .style-two {
    animation: load2 3s normal forwards;
}

.about-wrapper-3 .about-content .progress-item .pro-items .style-three {
    animation: load3 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 90%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }

    100% {
        width: 70%;
    }
}

@keyframes load3 {
    0% {
        width: 0;
    }

    100% {
        width: 55%;
    }
}

.about-wrapper-3 .about-content .about-button-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .about-wrapper-3 .about-content .about-button-item {
        flex-wrap: wrap;
    }
}

.about-wrapper-3 .about-content .about-button-item .call-button {
    background-color: var(--white);
    border-radius: 100px;
    padding: 16px 40px 14px;
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
}

.about-wrapper-3 .about-content .about-button-item .call-button i {
    margin-right: 5px;
}

.about-section-3 {
    margin: 0 30px;
}

@media (max-width: 1399px) {
    .about-section-3 {
        margin: 0 15px;
    }
}

.about-wrapper-4 {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 40px;
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-4 {
        padding-top: 30px;
        margin-top: 30px;
    }
}

.about-wrapper-4 .count-item {
    min-width: 260px;
}

.about-wrapper-4 .count-item h2 {
    color: var(--theme);
    font-size: 195px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .about-wrapper-4 .count-item h2 {
        font-size: 80px;
    }
}

.about-wrapper-4 .count-item h5 {
    line-height: 156%;
    color: var(--white);
}

.about-wrapper-4 .about-right-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .about-wrapper-4 .about-right-item {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .about-wrapper-4 .about-right-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.about-wrapper-4 .about-right-item .about-image {
    overflow: hidden;
    border-radius: 12px;
}

.about-wrapper-4 .about-right-item .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-wrapper-4 .about-right-item .content p {
    color: rgb(255, 255, 255);
    max-width: 405px;
    opacity: 0.8;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-4 .about-right-item .content p {
        margin-bottom: 30px;
    }
}

.about-section-4 {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 1399px) {
    .about-section-4 {
        margin: 0 15px;
    }
}

.about-section-4 .section-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .about-section-4 .section-title {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.brand-section {
    margin: 30px;
    margin-bottom: 0;
}

.brand-box-1 {
    height: 95px;
    line-height: 95px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.brand-box-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 95, 31, 0.12);
    border-color: rgba(255, 95, 31, 0.3);
}

.brand-box-1 .brand-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 18px;
    text-decoration: none;
}

.brand-box-1 .brand-img-1 img {
    max-width: 100% !important;
    max-height: 52px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 0.88;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.brand-box-1 .brand-img-1:last-child img {
    transform: translateY(-150%);
    opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
    transform: translateY(150%);
    opacity: 0;
}

.brand-box-1:hover .brand-img-1:last-child img {
    transform: translateY(0);
    opacity: 1;
}

.brand-slider.style-2 {
    margin-top: 120px;
}

@media (max-width: 1399px) {
    .brand-slider.style-2 {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .brand-slider.style-2 {
        margin-top: 80px;
    }
}

.brand-slider.style-2 .brand-box-1 {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-slider.style-2 .brand-box-1 .brand-img-1 img {
    max-width: 100% !important;
    max-height: 52px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 0.7;
    transition: all 0.6s ease;
    transform: translateY(0);
}

.brand-slider.style-2 .brand-box-1 .brand-img-1:last-child img {
    transform: translateY(-150%);
    opacity: 0;
}

.brand-slider.style-2 .brand-box-1:hover .brand-img-1:first-child img {
    transform: translateY(150%);
    opacity: 0;
}

.brand-slider.style-2 .brand-box-1:hover .brand-img-1:last-child img {
    transform: translateY(0);
    opacity: 1;
}

.brand-section-4 {
    margin: 0 30px 30px;
}

@media (max-width: 1399px) {
    .brand-section-4 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .brand-section-4 {
        margin-bottom: 80px;
    }
}

.contact-section-3 {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .contact-section-3 {
        margin: 0 15px;
    }
}

.contact-us-wrapper .contact-content .contact-left-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .contact-us-wrapper .contact-content .contact-left-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.contact-us-wrapper .contact-content .contact-left-item .content h4 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6 {
    font-weight: 500;
    color: var(--white);
    opacity: 0.7;
    line-height: 162%;
    margin-bottom: 5px;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.color-1 {
    opacity: initial;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.color-1 a {
    color: var(--white);
    opacity: initial;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6 a {
    color: var(--white);
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.tm-color {
    font-weight: 700;
    font-size: 17px;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.tm-color a {
    color: var(--theme);
}

.contact-us-wrapper .contact-content .contact-left-item .content.style-2 {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

@media (max-width: 1399px) {
    .contact-us-wrapper .contact-content .contact-left-item .content.style-2 {
        border-left: none;
        padding-left: 0;
    }
}

.contact-us-wrapper .contact-content p {
    max-width: 420px;
    margin-bottom: 30px;
    color: var(--white);
    opacity: 0.8;
}

.contact-us-wrapper .contact-content .link-btn {
    color: var(--white);
    text-decoration: underline;
}

.contact-us-wrapper .contact-content .link-btn i {
    color: var(--white);
}

.contact-us-wrapper .contact-content .link-btn:hover {
    color: var(--theme);
}

.contact-section-3 {
    position: relative;
    background-color: #0b050d;
    background-image: url('../img/home-1/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.contact-section-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 95, 31, 0.2) 0%, transparent 60%), linear-gradient(180deg, rgba(11, 5, 13, 0.85) 0%, rgba(11, 5, 13, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

.contact-section-3 .container {
    position: relative;
    z-index: 3;
}

.contact-us-wrapper .contact-box {
    margin-left: 50px;
    background: rgba(255, 255, 255, 0.06);
    border-top: 3px solid #ff5f1f;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #ff5f1f;
    border-radius: 16px;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1399px) {
    .contact-us-wrapper .contact-box {
        margin-left: 0;
        padding: 30px;
    }
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt input,
.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea {
    outline: none;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease-in-out;
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt input:hover,
.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea:hover {
    color: var(--white);
    border: 1px solid var(--white);
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt input:hover::textarea,
.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea:hover::textarea {
    color: var(--white);
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea {
    padding-bottom: 110px;
    color: rgba(255, 255, 255, 0.7);
    resize: none;
}

.contact-us-wrapper .contact-box .contact-form-box .theme-btn {
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

.contact-info-box {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 9;
}

.contact-info-box .icon {
    max-width: 80px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 25px;
    transition: all 0.4s ease-in-out;
}

.contact-info-box .content h4 {
    font-size: 20px;
    color: var(--header);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-info-box .content p {
    line-height: 162.5%;
}

.contact-info-box .content p a {
    color: var(--text);
}

.contact-info-box::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transform: scale(1, 0.3);
    transform: scale(1, 0.3);
    background-color: var(--theme);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
    border-radius: 8px;
}

.contact-info-box.active::before {
    opacity: 1;
    transform: scale(1, 1);
}

.contact-info-box.active .icon {
    background-color: var(--header);
}

.contact-info-box.active .icon i {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.contact-info-box.active .content h4,
.contact-info-box.active .content p {
    color: var(--white);
}

.contact-info-box.active .content p a {
    color: var(--white);
}

.contact-wrapper-inner .contact-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 12px;
}

.contact-wrapper-inner .contact-box-items {
    padding: 50px 50px;
    border-radius: 12px;
    background-color: var(--bg);
}

@media (max-width: 767px) {
    .contact-wrapper-inner .contact-box-items {
        padding: 30px;
    }
}

.contact-wrapper-inner .contact-box-items.style-2 {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7.5px);
}

.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt input,
.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt textarea {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt input::placeholder,
.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt textarea::placeholder {
    color: var(--white);
}

.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select {
    border: none;
    color: var(--header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select .current {
    color: var(--white);
}

.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.contact-wrapper-inner .contact-box-items .contact-form-box {
    margin-top: 30px;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt input,
.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt textarea {
    outline: none;
    width: 100%;
    color: var(--header);
    padding-bottom: 20px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    text-transform: capitalize;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt input::placeholder,
.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt textarea::placeholder {
    color: var(--header);
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt .form .single-select {
    border: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    background-color: transparent;
    width: 100%;
    height: initial;
    line-height: initial;
    text-transform: capitalize;
    color: var(--header);
    padding-bottom: 20px;
    border-radius: 0;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt .form .single-select .current {
    color: var(--header);
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
    width: 8px;
    height: 8px;
    right: 12px;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt .form .single-select .list {
    width: 100%;
}

.newsletter-box-4 {
    padding: 50px 50px 50px 42px;
    backdrop-filter: blur(16px);
    border-radius: 10px;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -100px;
    position: relative;
    z-index: 999;
}

@media (max-width: 1399px) {
    .newsletter-box-4 {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .newsletter-box-4 {
        margin-bottom: 80px;
    }
}

.newsletter-box-4 h2 {
    color: var(--white);
    position: relative;
}

@media (max-width: 1399px) {
    .newsletter-box-4 h2 br {
        display: none;
    }
}

.newsletter-box-4 .newsletter-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1399px) {
    .newsletter-box-4 .newsletter-content {
        flex-wrap: wrap;
    }
}

.newsletter-box-4 .newsletter-content form {
    position: relative;
}

.newsletter-box-4 .newsletter-content form input {
    width: 100%;
    border: none;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(2, 6, 10, 0.5);
    width: 376px;
}

@media (max-width: 767px) {
    .newsletter-box-4 .newsletter-content form input {
        width: 250px;
    }
}

.newsletter-box-4 .newsletter-content form input::placeholder {
    color: rgba(2, 6, 10, 0.5);
}

.newsletter-box-4 .newsletter-content .theme-btn {
    border-radius: 8px;
    background-color: var(--header);
}

.newsletter-box-4 .newsletter-content .theme-btn::before {
    background-color: var(--white);
}

.newsletter-box-4 .newsletter-content .theme-btn:after {
    background-color: rgba(255, 255, 255, 0.3);
}

.newsletter-box-4 .newsletter-content .theme-btn:hover {
    color: var(--header);
}

.faq-items {
    margin-top: 30px;
    text-align: center;
}

.faq-items .accordion .accordion-item {
    border: none;
    margin-bottom: 25px;
    background: var(--white);
    padding: 0;
    border-radius: 8px !important;
}

.faq-items .accordion .accordion-item h2 button {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    box-shadow: none;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    padding: 24px 20px;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    color: var(--header);
}

@media (max-width: 1399px) {
    .faq-items .accordion .accordion-item h2 button {
        font-size: 20px;
        padding: 24px 16px;
    }
}

@media (max-width: 575px) {
    .faq-items .accordion .accordion-item h2 button {
        font-size: 16px;
        padding: 24px 16px;
    }
}

.faq-items .accordion .accordion-item .accordion-body p {
    color: var(--text);
    line-height: 32px;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
}

@media (max-width: 575px) {
    .faq-items .accordion .accordion-item .accordion-body p {
        width: 100%;
        font-size: 14px;
        line-height: 28px;
    }
}

.faq-items .accordion .accordion-button {
    background-color: var(--theme);
    color: var(--white) !important;
}

.faq-items .accordion .accordion-button::after {
    display: none;
}

.faq-items .accordion .accordion-button::before {
    position: absolute;
    content: "+";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    top: 13px;
    right: 22px;
    font-size: 14px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--theme);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--white);
}

@media (max-width: 1399px) {
    .faq-items .accordion .accordion-button::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.faq-items .accordion .accordion-button.collapsed {
    background-color: transparent;
    color: var(--header) !important;
}

.faq-items .accordion .accordion-button.collapsed::before {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    color: var(--white);
    background-color: var(--theme);
}

.faq-wrapper-3 .faq-content .section-title h2 {
    font-size: 122px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .faq-wrapper-3 .faq-content .section-title h2 {
        font-size: 90px;
    }
}

@media (max-width: 991px) {
    .faq-wrapper-3 .faq-content .section-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .faq-wrapper-3 .faq-content .section-title h2 {
        font-size: 40px;
    }
}

.faq-wrapper-3 .faq-content .text {
    max-width: 420px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.faq-wrapper-3 .faq-content .link-btn {
    text-decoration: underline;
    color: var(--header);
}

.faq-wrapper-3 .faq-content .link-btn i {
    color: var(--header);
}

.faq-wrapper-3 .faq-content .link-btn:hover {
    color: var(--theme);
}

.faq-wrapper-3 .faq-content .link-btn:hover i {
    color: var(--theme);
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-item {
    border: none;
    margin-bottom: 25px;
    background: var(--white);
    padding: 0;
    border-radius: 8px !important;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-item h2 button {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    box-shadow: none;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    padding: 24px 20px;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    color: var(--header);
}

@media (max-width: 1399px) {
    .faq-wrapper-3 .faq-items-3 .accordion .accordion-item h2 button {
        font-size: 16px;
        padding: 24px 16px;
    }
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-item .accordion-body p {
    color: var(--text);
    line-height: 32px;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
}

@media (max-width: 575px) {
    .faq-wrapper-3 .faq-items-3 .accordion .accordion-item .accordion-body p {
        width: 100%;
        font-size: 14px;
        line-height: 28px;
    }
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button {
    background-color: var(--theme);
    color: var(--white) !important;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button::after {
    display: none;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button::before {
    position: absolute;
    content: "+";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    top: 13px;
    right: 22px;
    font-size: 14px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--theme);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--white);
}

@media (max-width: 1399px) {
    .faq-wrapper-3 .faq-items-3 .accordion .accordion-button::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button.collapsed {
    background-color: transparent;
    color: var(--header) !important;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button.collapsed::before {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    color: var(--white);
    background-color: var(--theme);
}

.counter-wrapper .counter-box-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 10px;
    padding: 25px;
}

.counter-wrapper .counter-box-item .counter-top-item {
    display: flex;
    align-items: center;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 175px;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-box-item .counter-top-item {
        margin-bottom: 30px;
    }
}

.counter-wrapper .counter-box-item .counter-top-item h2 {
    color: var(--white);
    font-size: 64px;
    line-height: 80%;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-box-item .counter-top-item h2 {
        font-size: 55px;
    }
}

.counter-wrapper .counter-box-item .counter-top-item .top-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.counter-wrapper .counter-box-item .counter-top-item .top-right span {
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 8px;
    border: 1px solid var(--theme);
    transition: all 0.4s ease-in-out;
}

.counter-wrapper .counter-box-item h4 {
    color: rgb(255, 255, 255);
}

.counter-wrapper .counter-box-item:hover .counter-top-item .top-right span {
    background-color: var(--theme);
}

.counter-wrapper .counter-content {
    margin-left: 150px;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-content {
        margin-left: 0;
    }
}

.counter-wrapper .counter-content .text {
    color: rgb(255, 255, 255);
    margin-top: 20px;
    max-width: 299px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.counter-wrapper .counter-content .video-circle {
    width: 160px;
    height: 160px;
    line-height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    text-align: center;
    z-index: 2;
}

.counter-wrapper .counter-content .video-circle img {
    width: initial;
    height: initial;
}

.counter-wrapper .counter-content .video-circle .text-circle {
    animation: cir36 10s linear infinite;
}

.counter-wrapper .counter-content .video-circle .ripple::before,
.counter-wrapper .counter-content .video-circle .ripple::after {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 0 rgba(249, 77, 0, 0.5);
}

.counter-wrapper .counter-content .video-circle .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    z-index: 9;
}

.counter-wrapper .counter-content .video-circle .video-btn:hover {
    background-color: var(--white);
    color: var(--header);
}

.counter-wrapper .counter-content .video-circle img {
    margin-left: 0;
}

.counter-section {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .counter-section {
        margin: 0 15px;
    }
}

.feature-top-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 120px;
    margin-top: 120px;
}

@media (max-width: 1399px) {
    .feature-top-item {
        margin-top: 100px;
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .feature-top-item {
        margin-top: 80px;
        padding-top: 80px;
    }
}

.feature-top-item .section-title-area {
    align-items: start;
}

@media (max-width: 1399px) {
    .feature-top-item .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.feature-top-item .section-title-area .section-title p {
    max-width: 299px;
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

.feature-top-item .section-title-area .section-right {
    display: flex;
    align-items: center;
    gap: 205px;
}

@media (max-width: 1399px) {
    .feature-top-item .section-title-area .section-right {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.feature-top-item .box-slider {
    margin-top: 48px;
}

.feature-icon-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1.13258px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18.1212px);
    border-radius: 9.78671px;
    padding: 34px;
    text-align: center;
    position: relative;
    width: 122px;
    height: 122px;
}

.feature-icon-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: solid 1px var(--theme);
    border-left: solid 1px var(--theme);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 4px;
}

.feature-icon-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: solid 1px var(--theme);
    border-right: solid 1px var(--theme);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 4px;
}

.feature-icon-item:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.feature-icon-item:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.feature-icon-item:hover img {
    animation: jello 1s;
}

.feature-icon-item-2 {
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 1399px) {
    .feature-icon-item-2 {
        flex-wrap: wrap;
    }
}

.feature-icon-item-2 .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: var(--white);
    border-radius: 4px;
}

.feature-icon-item-2 .content p {
    max-width: 290px;
    margin-top: 10px;
}

.feature-icon-item-2:hover .icon img {
    animation: jello 1s;
}

.feature-section-2 {
    border-bottom: 1px solid rgba(2, 6, 10, 0.08);
    margin-bottom: 120px;
}

@media (max-width: 1399px) {
    .feature-section-2 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .feature-section-2 {
        margin-bottom: 80px;
    }
}

.video-bg-section {
    position: relative;
    margin: 0 30px;
    border-radius: 16px;
    height: 872px;
}

@media (max-width: 1399px) {
    .video-bg-section {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .video-bg-section {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .video-bg-section {
        margin: 0 15px;
        height: 400px;
    }
}

.video-bg-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(2, 6, 10, 0) 0%, #02060A 90.52%);
    opacity: 0.9;
    border-radius: 0px 0px 16px 16px;
}

.video-bg-section .marquee {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
    line-height: 95px;
}

@media (max-width: 991px) {
    .video-bg-section .marquee {
        line-height: 75px;
    }
}

@media (max-width: 575px) {
    .video-bg-section .marquee {
        line-height: 60px;
    }
}

.video-bg-section .marquee .text {
    font-size: 125px;
    font-weight: 600;
    color: var(--theme);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .video-bg-section .marquee .text {
        font-size: 100px;
    }
}

@media (max-width: 575px) {
    .video-bg-section .marquee .text {
        font-size: 80px;
    }
}

.marque-section-3 .marquee {
    background-color: transparent;
    margin-bottom: 0;
    line-height: 0px;
    margin-top: -10px;
}

@media (max-width: 991px) {
    .marque-section-3 .marquee {
        line-height: 75px;
    }
}

@media (max-width: 575px) {
    .marque-section-3 .marquee {
        line-height: 60px;
    }
}

.marque-section-3 .marquee .text {
    font-size: 125px;
    font-weight: 600;
    color: var(--theme);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .marque-section-3 .marquee .text {
        font-size: 100px;
    }
}

@media (max-width: 575px) {
    .marque-section-3 .marquee .text {
        font-size: 80px;
    }
}

.feature-card-items-3 {
    display: flex;
    align-items: start;
    gap: 20px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    position: relative;
}

@media (max-width: 1399px) {
    .feature-card-items-3 {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.feature-card-items-3::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.feature-card-items-3 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #EFEDE5;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .feature-card-items-3 .content h3 {
        font-size: 20px;
    }
}

.feature-card-items-3 .content p {
    margin-top: 10px;
    max-width: 485px;
}

.feature-card-items-3:hover::before {
    transform: scale(1);
    opacity: 1;
}

.feature-card-items-3:hover .icon {
    position: relative;
    z-index: 999;
}

.feature-card-items-3:hover .icon img {
    position: relative;
    z-index: 999;
    animation: jello 1s;
}

.feature-card-items-3:hover .content h3 {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.feature-card-items-3:hover .content p {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.feature-section-3 .section-title-area p {
    max-width: 533px;
}

.video-play-section {
    margin: 0 30px;
    border-radius: 20px;
    padding: 390px 0 120px;
    position: relative;
}

@media (max-width: 1399px) {
    .video-play-section {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .video-play-section {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    .video-play-section {
        margin: 0 15px;
    }
}

.video-play-box {
    background-color: var(--header);
    padding: 50px 30px;
    border-radius: 10px;
    max-width: 415px;
    width: 100%;
}

@media (max-width: 575px) {
    .video-play-box {
        padding: 30px;
    }
}

.video-play-box h3 {
    font-size: 32px;
    color: var(--white);
}

@media (max-width: 1399px) {
    .video-play-box h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .video-play-box h3 {
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .video-play-box h3 {
        font-size: 20px;
    }
}

.video-play-box .play-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .video-play-box .play-item {
        flex-wrap: wrap;
    }
}

.video-play-box .play-item .video-btn {
    width: 124px;
    height: 76px;
    line-height: 76px;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    background-color: var(--theme);
    color: var(--white);
}

@media (max-width: 1399px) {
    .video-play-box .play-item .video-btn {
        width: 76px;
    }
}

.video-play-box .play-item h4 {
    color: var(--white);
    opacity: 0.8;
}

.hero-1 {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 175px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    margin-top: 0 !important;
    background-color: #080a12;
}

.hero-ambient-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 77, 0, 0.18) 0%, rgba(249, 77, 0, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* Trust Badges Strip */
.hero-trust-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-strip .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.hero-trust-strip .trust-pill i {
    color: var(--theme);
    font-size: 12px;
}

.hero-trust-strip .trust-pill:hover {
    background: rgba(249, 77, 0, 0.15);
    border-color: rgba(249, 77, 0, 0.4);
    transform: translateY(-2px);
}

/* Floating Trust Card */
.hero-trust-card {
    position: absolute;
    background: rgba(13, 16, 23, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.hero-trust-card.trust-card-top {
    top: 30px;
    left: -20px;
}

.hero-trust-card .trust-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(249, 77, 0, 0.15);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-trust-card .trust-card-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-trust-card .trust-card-text strong {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--white);
    line-height: 1.2;
}

.hero-trust-card .trust-card-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .hero-trust-card.trust-card-top {
        left: 10px;
        top: 10px;
    }
}

@media (max-width: 1399px) {
    .hero-1 {
        padding-top: 180px;
        margin-top: 0;
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .hero-1 {
        padding-top: 130px;
        padding-bottom: 80px;
    }
}

.hero-1 .hero-content {
    margin-bottom: 115px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

.hero-1 .hero-content h6 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 6px 9px;
    display: inline-block;
    border-radius: 100px;
}

.hero-1 .hero-content h6 img {
    margin-right: 5px;
    margin-top: -5px;
}

.hero-1 .hero-content h1 {
    color: var(--white);
    font-size: 52px;
    line-height: 1.18;
    margin-bottom: 20px;
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .hero-1 .hero-content h1 {
        font-size: 46px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 470px) {
    .hero-1 .hero-content h1 {
        font-size: 28px;
    }
}

.hero-1 .hero-content p {
    line-height: 155.556%;
    color: var(--white);
    max-width: 464px;
}

.hero-1 .hero-content .hero-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content .hero-btn {
        margin-top: 25px;
        flex-wrap: wrap;
    }
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2 {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2::before {
    background-color: var(--theme);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2:after {
    background-color: rgba(249, 77, 0, 0.3);
}

.hero-1 .hero-image {
    position: relative;
    text-align: center;
    max-width: 526px;
    margin-left: 110px;
}

/* ==================================================
   Gujarat & Global Authority Strip
================================================== */
.sq-authority-strip {
    background: #0b0e17;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.sq-authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .sq-authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .sq-authority-grid {
        grid-template-columns: 1fr;
    }
}

.sq-auth-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sq-auth-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(249, 77, 0, 0.12);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sq-auth-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--white);
    line-height: 1.2;
}

.sq-auth-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* ==================================================
   Industry Verticals Solution Cards
================================================== */
.sq-industry-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 28px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.sq-industry-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(249, 77, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.sq-ind-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(249, 77, 0, 0.15);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

.sq-industry-card:hover .sq-ind-icon {
    background: var(--theme);
    color: #fff;
}

.sq-industry-card h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sq-industry-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sq-industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.sq-industry-card ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sq-industry-card ul li i {
    color: var(--theme);
    font-size: 11px;
}

/* ==================================================
   4-Step Agile Client Delivery Process
================================================== */
.sq-process-card {
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 36px 26px;
    height: 100%;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sq-process-card:hover {
    border-color: var(--theme);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(249, 77, 0, 0.08);
}

.sq-step-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--theme);
    background: rgba(249, 77, 0, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.sq-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--header);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.sq-process-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 12px;
}

.sq-process-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   Interactive Lead Engine Form
================================================== */
.sq-quote-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 575px) {
    .sq-quote-box {
        padding: 25px 20px;
    }
}

.sq-service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sq-pill-checkbox {
    cursor: pointer;
    margin: 0;
}

.sq-pill-checkbox input {
    display: none;
}

.sq-pill-checkbox span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.sq-pill-checkbox input:checked+span {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
}

.sq-lead-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sq-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sq-benefit-item i {
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ==================================================
   Floating WhatsApp Lead Widget
================================================== */
.sq-floating-lead-hub {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.sq-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff !important;
    padding: 12px 20px 12px 16px;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: sqPulse 2.5s infinite;
}

.sq-whatsapp-btn:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.sq-whatsapp-btn i {
    font-size: 24px;
}

.sq-wa-badge {
    font-size: 14px;
    letter-spacing: 0.2px;
}

@keyframes sqPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 575px) {
    .sq-floating-lead-hub {
        bottom: 20px;
        right: 20px;
    }

    .sq-whatsapp-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .sq-whatsapp-btn i {
        font-size: 20px;
    }
}

.hero-1 .hero-image img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image img {
        margin-left: 0;
        width: 100%;
    }
}

.hero-1 .hero-image .video-circle {
    width: 160px;
    height: 160px;
    line-height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    text-align: center;
    z-index: 2;
    position: absolute;
    right: -80px;
    top: 12%;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image .video-circle {
        display: none;
    }
}

.hero-1 .hero-image .video-circle img {
    width: initial;
    height: initial;
}

.hero-1 .hero-image .video-circle .text-circle {
    animation: cir36 10s linear infinite;
}

.hero-1 .hero-image .video-circle .ripple::before,
.hero-1 .hero-image .video-circle .ripple::after {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 0 rgba(249, 77, 0, 0.5);
}

.hero-1 .hero-image .video-circle .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    z-index: 9;
}

.hero-1 .hero-image .video-circle .video-btn:hover {
    background-color: var(--white);
    color: var(--header);
}

.hero-1 .hero-image .video-circle img {
    margin-left: 0;
}

.hero-1 .hero-image .box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    position: absolute;
    bottom: 60px;
    margin-left: -180px;
    text-align: left;
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image .box {
        display: none;
    }
}

.hero-1 .hero-image .box .group-image-item {
    display: flex;
    align-items: center;
}

.hero-1 .hero-image .box .group-image-item .group-image img {
    margin-left: 0;
    width: initial;
    height: initial;
    border: 2px solid var(--white);
    border-radius: 100px;
}

.hero-1 .hero-image .box .group-image-item .group-image.style-2 {
    margin-left: -15px;
}

.hero-1 .hero-image .box .group-image-item .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 100px;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: -15px;
    background-color: var(--header);
}

.hero-1 .hero-image .box h4 {
    color: var(--white);
    margin-top: 10px;
}

.hero-2 {
    padding: 200px 0 30px;
    position: relative;
}

@media (max-width: 1399px) {
    .hero-2 {
        padding: 170px 0 100px;
    }
}

@media (max-width: 991px) {
    .hero-2 {
        padding: 150px 0 80px;
    }
}

.hero-2 .hero-content {
    margin-bottom: 120px;
}

@media (max-width: 1399px) {
    .hero-2 .hero-content {
        margin-bottom: 30px;
    }
}

.hero-2 .hero-content h1 {
    color: var(--white);
}

.hero-2 .hero-content p {
    color: #FFFFFF;
    opacity: 0.7;
    max-width: 470px;
    margin-top: 20px;
}

.hero-2 .container-fluid {
    padding: 0 30px;
}

@media (max-width: 991px) {
    .hero-2 .container-fluid {
        padding: 0 15px;
    }
}

.hero-2 .hero-imagee {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.hero-2 .hero-imagee img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.hero-2 .hero-box {
    background-color: var(--theme);
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    right: 265px;
    top: 400px;
    z-index: 999;
}

@media (max-width: 1399px) {
    .hero-2 .hero-box {
        display: none;
    }
}

.hero-2 .hero-box .top-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-2 .hero-box .top-item .group-image-item {
    display: flex;
    align-items: center;
}

.hero-2 .hero-box .top-item .group-image-item .group-image img {
    margin-left: 0;
    width: initial;
    height: initial;
    border: 2px solid var(--white);
    border-radius: 100px;
}

.hero-2 .hero-box .top-item .group-image-item .group-image.style-2 {
    margin-left: -15px;
}

.hero-2 .hero-box .top-item .group-image-item .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 100px;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: -15px;
    background-color: var(--header);
}

.hero-2 .hero-box .top-item h2 {
    color: var(--white);
}

.hero-2 .hero-box h3 {
    max-width: 346px;
    color: var(--white);
    margin-bottom: 40px;
}

.hero-2 .hero-box .theme-btn {
    background-color: var(--header);
}

.hero-2 .hero-box .theme-btn::before {
    background-color: var(--white);
}

.hero-2 .hero-box .theme-btn:after {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-2 .hero-box .theme-btn:hover {
    color: var(--header);
}

.hero-3 {
    padding: 250px 0 130px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

@media (max-width: 1399px) {
    .hero-3 {
        padding: 180px 0 120px;
    }
}

@media (max-width: 991px) {
    .hero-3 {
        padding: 150px 0 100px;
    }
}

.hero-3 .hero-content {
    margin-left: 50px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content {
        margin-left: 0;
    }
}

.hero-3 .hero-content h1 {
    color: var(--white);
    font-size: 130px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .hero-3 .hero-content h1 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 35px;
    }
}

.hero-3 .hero-content h1 span {
    display: inline-block;
    margin-left: 450px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content h1 span {
        margin-left: 0;
    }
}

.hero-3 .hero-content p {
    color: rgb(255, 255, 255);
    max-width: 427px;
    margin-left: 450px;
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content p {
        margin-left: 0;
    }
}

.hero-3 .hero-content .hero-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-left: 450px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content .hero-btn {
        margin-top: 25px;
        flex-wrap: wrap;
        margin-left: 0;
    }
}

.hero-3 .hero-content .hero-btn .theme-btn.style-2 {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-3 .hero-content .hero-btn .theme-btn.style-2::before {
    background-color: var(--theme);
}

.hero-3 .hero-content .hero-btn .theme-btn.style-2:after {
    background-color: rgba(249, 77, 0, 0.3);
}

.hero-4 {
    padding: 190px 0 100px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .hero-4 {
        padding: 170px 0 100px;
    }
}

@media (max-width: 991px) {
    .hero-4 {
        padding: 150px 0 80px;
    }
}

.hero-4 .hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 1399px) {
    .hero-4 .hero-shape {
        display: none;
    }
}

.hero-4 .hero-content {
    text-align: center;
}

.hero-4 .hero-content .sub {
    font-size: 14px;
    font-weight: 700;
    color: var(--header);
    opacity: 0.8;
    background: var(--white);
    padding: 6px 9px;
    display: inline-block;
    border-radius: 100px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
}

.hero-4 .hero-content .sub img {
    line-height: 1;
    margin-right: 5px;
    margin-top: -3px;
}

.hero-4 .hero-content h1 {
    font-size: 90px;
    margin-bottom: 30px;
    line-height: 109%;
}

@media (max-width: 1399px) {
    .hero-4 .hero-content h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-content h1 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .hero-4 .hero-content h1 {
        font-size: 35px;
    }
}

.hero-4 .hero-content h1 span {
    color: rgb(249, 77, 0);
}

.hero-4 .hero-content h1 b {
    color: rgb(255, 194, 167);
    font-weight: 600;
}

.hero-4 .hero-content p {
    max-width: 666px;
    margin: 0 auto;
}

.hero-4 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .hero-4 .hero-content .hero-button {
        flex-wrap: wrap;
    }
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn {
    background-color: var(--white);
    color: var(--header);
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn:after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn:hover {
    color: var(--white);
}

.news-card-items {
    margin-top: 30px;
    border-radius: 10px;
}

.news-card-items .news-image {
    position: relative;
    overflow: hidden;
}

.news-card-items .news-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    transition: all 500ms ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-card-items .news-image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.news-card-items .news-top-content {
    background-color: var(--white);
    padding-top: 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.news-card-items .news-top-content .news-content {
    padding: 0 24px 30px;
}

.news-card-items .news-top-content .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-card-items .news-top-content .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items .news-top-content .news-content span {
    color: #02060A;
    font-weight: 500;
    display: inline-block;
    margin-top: 40px;
}

.news-card-items .news-top-content .read-button {
    border-top: 1px solid rgba(2, 6, 10, 0.08);
    padding: 15px 30px;
}

.news-card-items:hover .news-image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.news-card-items:hover .news-image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.news-card-items-2 {
    margin-top: 30px;
    border-radius: 10px;
}

.news-card-items-2.style-2 {
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.news-card-items-2.style-2 .news-image {
    height: 248px;
}

.news-card-items-2.style-2 .news-image img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0px;
}

.news-card-items-2.style-2 .news-top-content {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0px;
    padding-top: 30px;
}

@media (max-width: 575px) {
    .news-card-items-2.style-2 .news-top-content {
        padding-top: 15px;
    }
}

.news-card-items-2.style-2 .news-top-content .news-content span {
    margin-top: 40px;
    display: inline-block;
}

.news-card-items-2 .news-image {
    position: relative;
    overflow: hidden;
}

.news-card-items-2 .news-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    transition: all 500ms ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-card-items-2 .news-image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.news-card-items-2 .news-top-content {
    background-color: var(--white);
    padding-top: 23px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.news-card-items-2 .news-top-content .news-content {
    padding: 0 24px 30px;
}

.news-card-items-2 .news-top-content .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-card-items-2 .news-top-content .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-2 .news-top-content .news-content span {
    color: #02060A;
    font-weight: 500;
    display: inline-block;
    margin-top: 30px;
}

.news-card-items-2 .news-top-content .read-button {
    border-top: 1px solid rgba(2, 6, 10, 0.08);
    padding: 15px 30px;
}

.news-card-items-2:hover .news-image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.news-card-items-2:hover .news-image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.news-wrapper {
    margin-top: 48px;
    margin-left: -70%;
    margin-right: -30%;
}

@media (max-width: 1399px) {
    .news-wrapper {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 30px;
    }
}

.news-wrapper .news-card-items-3 {
    border-radius: 10px;
    display: flex;
    align-items: center;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 {
        flex-wrap: wrap;
    }
}

.news-wrapper .news-card-items-3 .news-image {
    position: relative;
    overflow: hidden;
    height: 313px;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-image {
        height: initial;
        flex-basis: 100%;
    }
}

.news-wrapper .news-card-items-3 .news-image img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: inline-block;
    transition: all 500ms ease;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-image img {
        border-bottom-left-radius: 0px;
        border-top-right-radius: 10px;
    }
}

.news-wrapper .news-card-items-3 .news-image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.news-wrapper .news-card-items-3 .news-content {
    padding: 47px 30px;
    background-color: var(--white);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-content {
        padding: 30px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0;
    }
}

.news-wrapper .news-card-items-3 .news-content .list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.news-wrapper .news-card-items-3 .news-content .list span {
    color: var(--header);
}

.news-wrapper .news-card-items-3 .news-content .list span.style-2 {
    color: var(--theme);
}

.news-wrapper .news-card-items-3 .news-content h3 {
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-content h3 br {
        display: none;
    }
}

.news-wrapper .news-card-items-3 .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-wrapper .news-card-items-3 .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-wrapper .news-card-items-3 .news-content .theme-btn {
    background: #EFEDE5;
    color: var(--theme);
}

.news-wrapper .news-card-items-3 .news-content .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.news-wrapper .news-card-items-3 .news-content .theme-btn::after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.news-wrapper .news-card-items-3 .news-content .theme-btn:hover {
    color: var(--white);
}

.news-wrapper .news-card-items-3:hover .news-image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.news-wrapper .news-card-items-3:hover .news-image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
    margin-bottom: 30px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
    overflow: hidden;
    border-radius: 12px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
    width: 100%;
    height: 100%;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    border-radius: 12px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
    margin-right: 10px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 25px;
    }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
    margin-top: 24px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
    font-size: 14px;
    font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
    color: var(--theme);
    margin-right: 5px;
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 {
    margin-bottom: 20px;
    font-size: 42px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
        font-size: 24px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
        padding: 30px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
    max-width: 650px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text .icon {
    float: right;
    margin-top: -30px;
    color: var(--theme);
    font-size: 40px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid rgba(2, 6, 10, 0.08);
    border-bottom: 1px solid rgba(2, 6, 10, 0.08);
    padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: var(--white);
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
}

@media (max-width: 1399px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        padding: 12px 20px;
    }
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
    padding: 50px 40px;
    background-color: var(--white);
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .news-details-area .blog-post-details .comments-area {
        padding: 50px 30px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
        font-size: 28px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid #e5e5e5;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
    border: none;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: var(--theme);
    font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--white);
    color: var(--theme);
}

.news-details-area .blog-post-details .comment-form-wrap {
    background-color: var(--white);
    border-radius: 8px;
    padding: 50px 40px;
    margin-top: 40px;
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--bg);
    border: none;
    padding: 16px 20px;
    font-weight: 500;
    border-radius: 5px;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
}

.gt-main-sideber .gt-single-sideber-widget {
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .gt-main-sideber .gt-single-sideber-widget {
        padding: 25px;
    }
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
    width: 100%;
    position: relative;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
    background-color: var(--bg);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 6px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
    position: absolute;
    right: -2px;
    top: 0;
    width: 58px;
    border-radius: 6px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
    background-color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
    font-weight: 600;
    font-size: 22px;
}

.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--bg);
    padding: 22px 25px;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
    color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
    transition: all 0.4s ease-in-out;
    color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
    font-weight: 400;
    color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
    background-color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
    color: var(--white);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i,
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
    color: var(--white);
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
    border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    font-family: var(--font-body), "Inter", sans-serif;
}

@media (max-width: 1399px) {
    .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
        font-size: 16px;
    }
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 a:hover {
    color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
    color: var(--text);
    font-weight: 500;
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
    display: inline-block;
    padding: 12px 18px;
    line-height: 1;
    font-weight: 600;
    background: var(--bg);
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
    border-radius: 4px;
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
    margin-right: 0;
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.pricing-box-items {
    margin-top: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 50px 30px;
    position: relative;
}

.pricing-box-items .nexella-hover-bx {
    background: var(--theme);
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 25%;
    z-index: -1;
}

.pricing-box-items .hover-bx {
    left: 0;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.pricing-box-items .hover-bx2 {
    left: 25%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-box-items .hover-bx3 {
    left: 50%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-box-items .hover-bx4 {
    left: 75%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.pricing-box-items .pricing-header {
    margin-bottom: 30px;
}

.pricing-box-items .pricing-header span {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--white);
}

.pricing-box-items .pricing-header h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .pricing-box-items .pricing-header h3 {
        font-size: 55px;
    }
}

.pricing-box-items .pricing-header h3 sub {
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    opacity: 0.8;
    letter-spacing: initial;
    margin-left: -12px;
}

.pricing-box-items .pricing-header p {
    color: #FFFFFF;
    opacity: 0.8;
}

.pricing-box-items .theme-btn {
    background-color: var(--white);
    width: 100%;
    color: var(--header);
    display: inline-block;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .pricing-box-items .theme-btn {
        margin-top: 30px;
    }
}

.pricing-box-items .theme-btn::before {
    background-color: var(--header);
    border-radius: 8px;
}

.pricing-box-items .theme-btn:after {
    background-color: rgba(11, 13, 23, 0.3);
    border-radius: 8px;
}

.pricing-box-items .theme-btn:hover {
    color: var(--white);
}

.pricing-box-items .pricing-list {
    margin-top: 30px;
}

.pricing-box-items .pricing-list h5 {
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

@media (max-width: 1199px) {
    .pricing-box-items .pricing-list h5 {
        letter-spacing: inherit;
    }
}

.pricing-box-items .pricing-list ul {
    margin-top: 20px;
}

.pricing-box-items .pricing-list ul li {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 16px;
    font-weight: 500;
    line-height: 162.5%;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-box-items .pricing-list ul li i {
    font-size: 18px;
    color: var(--theme);
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
    margin-bottom: 15px;
}

.pricing-box-items:hover .nexella-hover-bx {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.pricing-box-items:hover .pricing-list ul li i {
    color: var(--white);
}

.pricing-box-items.style-inner {
    background-color: var(--header);
}

.pricing-section-2 {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 575px) {
    .pricing-section-2 {
        margin: 0 15px;
    }
}

.pricing-section-2 .section-title-area .nav {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 70px;
    padding: 10px;
}

.pricing-section-2 .section-title-area .nav .nav-item .nav-link {
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    text-transform: capitalize;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 70px;
}

@media (max-width: 575px) {
    .pricing-section-2 .section-title-area .nav .nav-item .nav-link {
        padding: 12px 15px;
    }
}

.pricing-section-2 .section-title-area .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}

.pricing-card-items-3 {
    padding: 50px 30px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    position: relative;
}

@media (max-width: 1399px) {
    .pricing-card-items-3 {
        padding: 30px;
    }
}

.pricing-card-items-3 .nexella-hover-bx {
    background: var(--theme);
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 25%;
    z-index: -1;
}

.pricing-card-items-3 .hover-bx {
    left: 0;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.pricing-card-items-3 .hover-bx2 {
    left: 25%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-card-items-3 .hover-bx3 {
    left: 50%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-card-items-3 .hover-bx4 {
    left: 75%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.pricing-card-items-3 .pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.pricing-card-items-3 .pricing-header h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-card-items-3 .pricing-header h2 {
    color: var(--white);
}

.pricing-card-items-3 .pricing-header h2 span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card-items-3 .pricing-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 360px;
}

.pricing-card-items-3 .pricing-list {
    margin-bottom: 40px;
}

.pricing-card-items-3 .pricing-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 162.5%;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card-items-3 .pricing-list li i {
    font-size: 18px;
    color: var(--theme);
}

.pricing-card-items-3 .pricing-list li:not(:last-child) {
    margin-bottom: 15px;
}

.pricing-card-items-3 .theme-btn {
    background-color: var(--white);
    width: 100%;
    color: var(--header);
    display: inline-block;
    border-radius: 8px;
}

.pricing-card-items-3 .theme-btn::before {
    background-color: var(--header);
    border-radius: 8px;
}

.pricing-card-items-3 .theme-btn:after {
    background-color: rgba(11, 13, 23, 0.3);
    border-radius: 8px;
}

.pricing-card-items-3 .theme-btn:hover {
    color: var(--white);
}

.pricing-card-items-3:hover .nexella-hover-bx {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.pricing-card-items-3:hover .pricing-header {
    border-bottom: 1px solid var(--white);
}

.pricing-card-items-3:hover .pricing-header h2 span {
    color: var(--white);
}

.pricing-card-items-3:hover .pricing-header p {
    color: var(--white);
}

.pricing-card-items-3:hover .pricing-list li {
    color: var(--white);
}

.pricing-card-items-3:hover .pricing-list li i {
    color: var(--white);
}

.pricing-section-3 {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .pricing-section-3 {
        margin: 0 15px;
    }
}

.pricing-section-3 .nav-top {
    text-align: center;
    margin-bottom: 18px;
}

@media (max-width: 575px) {
    .pricing-section-3 .nav-top {
        margin-top: 30px;
    }
}

.pricing-section-3 .nav-top .nav {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 70px;
    padding: 10px;
}

.pricing-section-3 .nav-top .nav .nav-item .nav-link {
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 70px;
}

@media (max-width: 575px) {
    .pricing-section-3 .nav-top .nav .nav-item .nav-link {
        padding: 12px 15px;
    }
}

.pricing-section-3 .nav-top .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}

.pricing-card-items-4 {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
}

.pricing-card-items-4::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
    .pricing-card-items-4 {
        padding: 30px;
    }
}

.pricing-card-items-4 .pricing-header {
    margin-bottom: 25px;
}

.pricing-card-items-4 .pricing-header p {
    margin-top: 10px;
}

.pricing-card-items-4 .pricing-list {
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .pricing-card-items-4 .pricing-list {
        margin-bottom: 30px;
    }
}

.pricing-card-items-4 .pricing-list li {
    color: var(--header);
    font-weight: 500;
    position: relative;
    padding-left: 13px;
}

.pricing-card-items-4 .pricing-list li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background-color: rgb(249, 77, 0);
    top: 10px;
    left: 0;
}

.pricing-card-items-4 .pricing-list li:not(:last-child) {
    margin-bottom: 10px;
}

.pricing-card-items-4 .theme-btn {
    background-color: rgb(239, 237, 229);
    width: 100%;
    color: var(--header);
    display: inline-block;
    border-radius: 8px;
}

.pricing-card-items-4 .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.pricing-card-items-4 .theme-btn:after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.pricing-card-items-4 .theme-btn:hover {
    color: var(--white);
}

.pricing-card-items-4:hover::before {
    transform: scale(1);
    opacity: 1;
}

.pricing-card-items-4:hover .pricing-header {
    position: relative;
    z-index: 999;
}

.pricing-card-items-4:hover .pricing-header h3 {
    color: var(--white);
}

.pricing-card-items-4:hover .pricing-header p {
    color: var(--white);
}

.pricing-card-items-4:hover .pricing-list li {
    color: var(--white);
}

.pricing-card-items-4:hover .pricing-list li::before {
    background-color: var(--white);
}

.marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    margin-bottom: 120px;
    padding: 30px 0;
    background-color: var(--theme);
}

@media (max-width: 1399px) {
    .marquee {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .marquee {
        margin-bottom: 80px;
    }
}

.marquee.slide-right {
    transform: scaleX(-1);
}

.marquee.slide-right .text,
.marquee.slide-right .stroke-text {
    transform: scaleX(-1);
}

.marquee .marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}

.marquee .text {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1199px) {
    .marquee .text {
        gap: 30px;
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .marquee .text {
        gap: 20px;
        font-size: 50px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.project-box-wrapper {
    margin-top: 48px;
}

.project-box-wrapper .project-card-items {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 100px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items {
        padding: 30px;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-box-wrapper .project-card-items h4 {
    position: absolute;
    top: 55px;
    left: 55px;
}

@media (max-width: 991px) {
    .project-box-wrapper .project-card-items h4 {
        display: none;
    }
}

.project-box-wrapper .project-card-items .project-content h3 {
    font-size: 80px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items .project-content h3 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .project-box-wrapper .project-card-items .project-content h3 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .project-box-wrapper .project-card-items .project-content h3 {
        font-size: 30px;
    }
}

.project-box-wrapper .project-card-items .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-box-wrapper .project-card-items .project-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-box-wrapper .project-card-items .project-content p {
    max-width: 601px;
    margin-bottom: 25px;
}

.project-box-wrapper .project-card-items .project-content .list {
    margin-top: 150px;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items .project-content .list {
        margin-top: 30px;
    }
}

.project-box-wrapper .project-card-items .project-content .list li a {
    border: 1px solid rgba(2, 6, 10, 0.1);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    margin: 0 2px;
}

.project-box-wrapper .project-card-items .project-content .list li a:hover {
    background-color: rgb(239, 237, 229);
    color: var(--theme);
}

.project-box-wrapper .project-card-items .project-thumb {
    overflow: hidden;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items .project-thumb {
        flex-basis: 100%;
    }
}

.project-box-wrapper .project-card-items .project-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-section-2 .section-title-area {
    margin-bottom: 80px;
}

.project-section-2 .section-title-area .content p {
    max-width: 471px;
    margin-bottom: 15px;
}

.project-section-2 .section-title-area .content .project-btn {
    color: var(--header);
    text-decoration: underline;
    font-weight: 600;
}

.project-section-2 .container-fluid {
    padding: 0 30px;
}

@media (max-width: 575px) {
    .project-section-2 .container-fluid {
        padding: 0 15px;
    }
}

.project-card-items-2.mt-200 {
    margin-top: 200px;
}

@media (max-width: 1399px) {
    .project-card-items-2.mt-200 {
        margin-top: 0;
    }
}

.project-card-items-2.mt-100 {
    margin-top: 100px;
}

@media (max-width: 1399px) {
    .project-card-items-2.mt-100 {
        margin-top: 0;
    }
}

.project-card-items-2 .project-image {
    max-width: 590px;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .project-card-items-2 .project-image {
        max-width: initial;
    }
}

.project-card-items-2 .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-card-items-2 .project-image.tp-clip-anim {
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    position: relative;
}

.project-card-items-2 .project-image.tp-clip-anim .tp-anim-img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.project-card-items-2 .project-image.tp-clip-anim .mask {
    background-size: cover;
    background-position: center;
    transform: scale(1.005);
}

.project-card-items-2 .project-image.tp-clip-anim>* {
    grid-area: 1/1/2/2;
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.project-card-items-2.style-2 {
    margin-left: 230px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-2 {
        margin-left: 0;
    }
}

.project-card-items-2.style-2 .project-image {
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-2 .project-image {
        max-width: initial;
    }
}

.project-card-items-2.style-3 {
    margin-top: 320px;
    max-width: 1000px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-3 {
        margin-top: 0;
        max-width: initial;
    }
}

.project-card-items-2.style-3 .project-image {
    max-width: 1000px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-3 .project-image {
        max-width: initial;
    }
}

.project-card-items-2.style-4 {
    margin-left: 12px;
    max-width: 590px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-4 {
        max-width: initial;
        margin-left: 0;
    }
}

.project-card-items-2 .project-content {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .project-card-items-2 .project-content {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.project-card-items-2 .project-content h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1600px) {
    .project-card-items-2 .project-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 1399px) {
    .project-card-items-2 .project-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .project-card-items-2 .project-content h3 {
        font-size: 20px;
    }
}

.project-card-items-2 .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-card-items-2 .project-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-card-items-2 .project-content .list li a {
    border: 1px solid rgba(2, 6, 10, 0.1);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    margin: 0 2px;
}

.project-card-items-2 .project-content .list li a:hover {
    background-color: var(--white);
    color: var(--theme);
}

.project-card-items-inner .project-image {
    height: 562px;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .project-card-items-inner .project-image {
        max-width: initial;
        height: 350px;
    }
}

.project-card-items-inner .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.project-card-items-inner .project-image.tp-clip-anim {
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    position: relative;
}

.project-card-items-inner .project-image.tp-clip-anim .tp-anim-img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.project-card-items-inner .project-image.tp-clip-anim .mask {
    background-size: cover;
    background-position: center;
    transform: scale(1.005);
}

.project-card-items-inner .project-image.tp-clip-anim>* {
    grid-area: 1/1/2/2;
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.project-card-items-inner .project-content {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .project-card-items-inner .project-content {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.project-card-items-inner .project-content h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1600px) {
    .project-card-items-inner .project-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 1399px) {
    .project-card-items-inner .project-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .project-card-items-inner .project-content h3 {
        font-size: 20px;
    }
}

.project-card-items-inner .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-card-items-inner .project-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-card-items-inner .project-content .list li a {
    border: 1px solid rgba(2, 6, 10, 0.1);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    margin: 0 2px;
}

.project-card-items-inner .project-content .list li a:hover {
    background-color: var(--white);
    color: var(--theme);
}

.project-details-wrapper .details-top-img {
    border-radius: 12px;
}

@media (max-width: 991px) {
    .project-details-wrapper .details-top-img {
        height: 600px;
    }

    .project-details-wrapper .details-top-img img {
        object-fit: cover;
    }
}

.project-details-wrapper .details-top-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-details-wrapper .project-details-content {
    margin-top: 30px;
}

.project-details-wrapper .project-details-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 25px;
    }
}

.project-details-wrapper .project-details-content .project-list-items {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-content .project-list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-details-wrapper .project-details-content .project-list-items ul li {
    font-weight: 500;
}

.project-details-wrapper .project-details-content .project-list-items ul li i {
    color: var(--theme);
    margin-right: 10px;
}

.project-details-wrapper .project-details-content .project-list-items ul li:not(:last-child) {
    margin-bottom: 15px;
}

.project-details-wrapper .project-details-content .details-image-2 {
    margin-top: 30px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .project-details-wrapper .project-details-content .details-image-2 {
        height: 550px;
    }

    .project-details-wrapper .project-details-content .details-image-2 img {
        object-fit: cover;
    }
}

.project-details-wrapper .project-details-content .details-image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-details-wrapper .project-details-content .details-img-3 {
    margin-top: 20px;
}

.project-details-wrapper .project-details-content .details-img-3 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-details-wrapper .project-details-content .slider-button {
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    margin-top: 65px;
    padding: 25px 0;
}

.project-details-wrapper .project-details-content .slider-button span {
    font-weight: 500;
}

.project-details-wrapper .project-details-content .slider-button .cmn-next,
.project-details-wrapper .project-details-content .slider-button .cmn-prev {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s;
    border: 1px solid #E4E4E4;
}

.project-details-wrapper .project-details-content .slider-button .cmn-next i,
.project-details-wrapper .project-details-content .slider-button .cmn-prev i {
    color: var(--theme);
    font-size: 24px;
    transition: all 0.4s;
}

.project-details-wrapper .project-details-content .slider-button .cmn-next:hover,
.project-details-wrapper .project-details-content .slider-button .cmn-prev:hover {
    background: var(--theme);
    border-color: var(--theme);
}

.project-details-wrapper .project-details-content .slider-button .cmn-next:hover i,
.project-details-wrapper .project-details-content .slider-button .cmn-prev:hover i {
    color: var(--white);
}

.project-details-wrapper .project-details-content .slider-button .previus-text {
    font-size: 22px;
    color: var(--header);
}

.project-details-wrapper .project-details-content .slider-button .icon-gird {
    font-size: 40px;
    color: #0F172A;
}

.project-details-wrapper .project-details-sidebar {
    margin-top: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget {
    padding: 40px 35px;
    border-radius: 10px;
    background-color: var(--white);
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-sidebar .sidebar-widget {
        padding: 30px 25px;
    }
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title {
    margin-bottom: 25px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid var(--theme);
    display: inline-block;
    padding-bottom: 20px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 i {
    color: var(--theme);
    font-size: 16px;
    margin-right: 7px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg);
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li:not(:last-child) {
    margin-bottom: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image {
    position: relative;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content {
    position: absolute;
    padding: 25px;
    bottom: 25px;
    left: 25px;
    right: 25px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .icon {
    font-size: 70px;
    color: var(--white);
    margin-bottom: 35px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content h3 {
    margin-top: 15px;
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn {
    margin-top: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .white-logo {
    position: absolute;
    top: 50px;
    left: 50px;
}

.marque-bg-section-4 {
    margin: 0 40px;
    border-radius: 20px;
    height: 518px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .marque-bg-section-4 {
        margin: 0 30px;
        height: 550px;
    }
}

@media (max-width: 1399px) {
    .marque-bg-section-4 {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .marque-bg-section-4 {
        margin: 0 15px;
        height: 350px;
    }
}

.marque-bg-section-4 .marquee {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
    line-height: 530px;
}

@media (max-width: 991px) {
    .marque-bg-section-4 .marquee {
        line-height: 75px;
    }
}

@media (max-width: 575px) {
    .marque-bg-section-4 .marquee {
        line-height: 60px;
    }
}

.marque-bg-section-4 .marquee .marquee-group {
    display: flex;
    align-items: center;
    gap: 50px;
}

.marque-bg-section-4 .marquee .marquee-group .hover-image {
    width: 393px;
    height: 393px;
    position: absolute;
    border-radius: 100px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(10deg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    margin: -300px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
    visibility: hidden;
    will-change: transform;
}

@media (max-width: 991px) {
    .marque-bg-section-4 .marquee .marquee-group .hover-image {
        display: none !important;
    }
}

.marque-bg-section-4 .marquee .text {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 125px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    cursor: none;
}

@media (max-width: 991px) {
    .marque-bg-section-4 .marquee .text {
        font-size: 100px;
    }
}

@media (max-width: 575px) {
    .marque-bg-section-4 .marquee .text {
        font-size: 80px;
    }
}

.marque-bg-section-4 .marquee:hover .marquee-group .hover-image {
    opacity: 1;
    visibility: visible;
}

.project-card-wrapper-4 {
    margin-top: 48px;
}

.project-card-wrapper-4 .project-card-items-4 {
    margin-bottom: 25px;
    border-radius: 12px;
    padding: 350px 30px 30px;
}

@media (max-width: 1399px) {
    .project-card-wrapper-4 .project-card-items-4 {
        padding: 100px 30px 30px;
    }
}

@media (max-width: 991px) {
    .project-card-wrapper-4 .project-card-items-4 {
        padding: 80px 30px 30px;
    }
}

@media (max-width: 767px) {
    .project-card-wrapper-4 .project-card-items-4 {
        padding: 30px;
    }
}

.project-card-wrapper-4 .project-card-items-4 .project-box {
    background-color: var(--header);
    padding: 35px 30px;
    border-radius: 10px;
    max-width: 415px;
    width: 100%;
}

@media (max-width: 1399px) {
    .project-card-wrapper-4 .project-card-items-4 .project-box {
        padding: 30px;
    }
}

.project-card-wrapper-4 .project-card-items-4 .project-box h3 {
    font-size: 32px;
}

@media (max-width: 1399px) {
    .project-card-wrapper-4 .project-card-items-4 .project-box h3 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .project-card-wrapper-4 .project-card-items-4 .project-box h3 {
        font-size: 25px;
    }
}

.project-card-wrapper-4 .project-card-items-4 .project-box h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

.project-card-wrapper-4 .project-card-items-4 .project-box h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-card-wrapper-4 .project-card-items-4 .project-box p {
    color: var(--white);
    margin-bottom: 25px;
    margin-top: 15px;
    opacity: 0.8;
}

.project-card-wrapper-4 .project-card-items-4 .project-box .arrow-icon {
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 100px;
    color: var(--white);
    background-color: var(--theme);
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.project-card-wrapper-4 .project-card-items-4 .project-box .arrow-icon:hover {
    background-color: var(--white);
    color: var(--header);
}

.project-section-4 {
    border-bottom: 1px solid rgba(2, 6, 10, 0.1);
}

.project-section-4 .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .project-section-4 .section-title {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-section-4 .section-title h2 {
    font-size: 90px;
}

@media (max-width: 1399px) {
    .project-section-4 .section-title h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    .project-section-4 .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .project-section-4 .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .project-section-4 .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .project-section-4 .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    .project-section-4 .section-title h2 {
        font-size: 30px;
    }
}

.service-box-item {
    background-color: var(--bg);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.service-box-item::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    transform: scale(0.1, 1);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background-color: var(--theme);
    border-radius: 12px;
}

.service-box-item .icon {
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 100px;
    margin-bottom: 30px;
}

.service-box-item .content h3 {
    margin-bottom: 10px;
}

@media (max-width: 1600px) {
    .service-box-item .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .service-box-item .content h3 {
        font-size: 20px;
    }
}

.service-box-item .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-box-item .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-box-item .content .theme-btn {
    background-color: var(--white);
    width: 100%;
    color: var(--header);
    display: inline-block;
    margin-top: 120px;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .service-box-item .content .theme-btn {
        margin-top: 30px;
    }
}

.service-box-item .content .theme-btn::before {
    background-color: var(--header);
    border-radius: 8px;
}

.service-box-item .content .theme-btn:after {
    background-color: rgba(11, 13, 23, 0.3);
    border-radius: 8px;
}

.service-box-item .content .theme-btn:hover {
    color: var(--white);
}

.service-box-item:hover:before {
    opacity: 1;
    transform: scale(1, 1);
}

.service-box-item:hover .content h3 {
    position: relative;
}

.service-box-item:hover .content h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-box-item:hover .content h3 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.service-box-item:hover .content p {
    position: relative;
    color: var(--white);
}

.service-box-item:hover .icon {
    position: relative;
    background-color: var(--header);
}

.service-box-item:hover .icon img {
    animation: jello 1s;
}

.service-section {
    position: relative;
}

.service-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    width: 1860px;
    left: 30px;
    border-radius: 16px;
}

@media (max-width: 1899px) {
    .service-section::before {
        width: 100%;
        left: 0;
    }
}

.service-section .service-slider {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 50px;
    padding-bottom: 20px;
}

@media (max-width: 1399px) {
    .service-section .service-slider {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 575px) {
    .service-section .service-slider {
        margin-top: 30px;
    }
}

.global-service-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    margin-top: 30px;
    position: relative;
}

.global-service-box.style-2 {
    margin-top: 48px;
}

@media (max-width: 1199px) {
    .global-service-box {
        padding: 30px;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.global-service-box::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0;
    transform: scale(1, 0.3);
    background-color: var(--theme);
    transition: all 500ms ease;
    border-radius: 8px;
}

.global-service-box .global-content {
    flex-basis: 20%;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .global-service-box .global-content {
        flex-basis: initial;
    }
}

.global-service-box .global-content .content {
    display: flex;
    gap: 15px;
}

.global-service-box .global-content .content span {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.2;
    line-height: 1;
    color: var(--white);
    opacity: 0.4;
}

.global-service-box .global-content .content h3 {
    text-transform: capitalize;
    line-height: 90%;
}

.global-service-box .global-content .content h3 a {
    color: var(--white);
}

.global-service-box .global-content .content h3 a:hover {
    color: var(--white);
}

.global-service-box .text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 395px;
    position: relative;
    z-index: 9;
}

.global-service-box .icon {
    display: inline-block;
    color: var(--white);
    opacity: 0.3;
    font-size: 20px;
    position: relative;
    z-index: 9;
    transition: all 0.3s ease;
}

.global-service-box .icon:hover {
    color: var(--white);
}

.global-service-box:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.global-service-box:hover .global-content .content span {
    color: var(--white);
    opacity: initial;
}

.global-service-box:hover .text {
    color: var(--white);
}

.global-service-box:hover .icon {
    color: var(--white);
    opacity: initial;
}

.service-section-2 {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 575px) {
    .service-section-2 {
        margin: 0 15px;
    }
}

.service-card-items-3 {
    margin-top: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.service-card-items-3 .service-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.service-card-items-3 .service-content {
    margin-top: 30px;
}

.service-card-items-3 .service-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-card-items-3 .service-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-card-items-3 .service-content p {
    margin-bottom: 30px;
    margin-top: 10px;
}

.service-card-items-3 .service-content .theme-btn {
    width: 100%;
    background-color: rgb(239, 237, 229);
    border-radius: 8px;
    color: var(--header);
}

.service-card-items-3 .service-content .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.service-card-items-3 .service-content .theme-btn::after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.service-card-items-3 .service-content .theme-btn:hover {
    color: var(--white);
}

.service-section-3 .section-title-area .array-button .array-prev {
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

.service-section-3 .section-title-area .array-button .array-prev:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.service-details-wrapper .service-top-img {
    border-radius: 12px;
}

.service-details-wrapper .service-top-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.service-details-wrapper .service-details-content {
    margin-top: 30px;
}

.service-details-wrapper .service-details-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
}

.service-details-wrapper .service-details-content .service-list-items {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .service-details-wrapper .service-details-content .service-list-items {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.service-details-wrapper .service-details-content .service-list-items ul li {
    font-weight: 500;
}

.service-details-wrapper .service-details-content .service-list-items ul li i {
    color: var(--theme);
    margin-right: 10px;
}

.service-details-wrapper .service-details-content .service-list-items ul li:not(:last-child) {
    margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .service-box-area {
    margin-top: 40px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items {
    background-color: #F2F5F7;
    border-radius: 10px;
    padding: 30px 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items .number {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    display: block;
    text-align: center;
    font-weight: 700;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items h5 {
    font-size: 18px;
    font-weight: 500;
    max-width: 155px;
    margin-top: 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items p {
    margin-top: 10px;
}

.service-details-wrapper .service-details-sidebar {
    margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget {
    padding: 40px 35px;
    border-radius: 10px;
    background-color: var(--white);
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .service-details-wrapper .service-details-sidebar .sidebar-widget {
        padding: 30px;
    }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
    margin-bottom: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h4 {
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h4 i {
    color: var(--theme);
    font-size: 16px;
    margin-right: 7px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg);
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li:not(:last-child) {
    margin-bottom: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image {
    position: relative;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
    position: absolute;
    padding: 25px;
    bottom: 25px;
    left: 25px;
    right: 25px;
}

@media (max-width: 1399px) {
    .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .icon {
    font-size: 70px;
    color: var(--white);
    margin-bottom: 35px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 {
    margin-top: 15px;
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 {
        font-size: 24px;
    }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn {
    margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .white-logo {
    position: absolute;
    top: 50px;
    left: 50px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
}

.service-details-wrapper .service-details-sidebar .service-list-item li:not(:last-child) {
    margin-bottom: 10px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a {
    color: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg);
    padding: 20px 24px;
    line-height: 1;
    border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.service-section-3 .service-slider-3 {
    margin-left: -50px;
    margin-right: -50px;
}

@media (max-width: 1399px) {
    .service-section-3 .service-slider-3 {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.service-wrapper-4 .service-left-content .text {
    max-width: 299px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.service-wrapper-4 .service-card-items-4 {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

@media (max-width: 1399px) {
    .service-wrapper-4 .service-card-items-4 {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .service-wrapper-4 .service-card-items-4 {
        padding: 30px;
    }
}

.service-wrapper-4 .service-card-items-4::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.service-wrapper-4 .service-card-items-4 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #EFEDE5;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .service-wrapper-4 .service-card-items-4 .content h3 {
        font-size: 20px;
    }
}

.service-wrapper-4 .service-card-items-4 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-wrapper-4 .service-card-items-4 .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-wrapper-4 .service-card-items-4 .content p {
    margin-top: 10px;
    max-width: 485px;
}

.service-wrapper-4 .service-card-items-4:hover::before {
    transform: scale(1);
    opacity: 1;
}

.service-wrapper-4 .service-card-items-4:hover .icon {
    position: relative;
    z-index: 999;
}

.service-wrapper-4 .service-card-items-4:hover .icon img {
    position: relative;
    z-index: 999;
    animation: jello 1s;
}

.service-wrapper-4 .service-card-items-4:hover .content h3 {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.service-wrapper-4 .service-card-items-4:hover .content h3 a {
    color: var(--white);
}

.service-wrapper-4 .service-card-items-4:hover .content p {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.team-section {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .team-section {
        margin: 0 15px 0;
    }
}

.team-wrapper .team-left-content .text {
    max-width: 299px;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 30px;
}

.team-wrapper .team-card-item {
    position: relative;
}

.team-wrapper .team-card-item .team-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.team-wrapper .team-card-item .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}

.team-wrapper .team-card-item .team-image .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.team-wrapper .team-card-item .team-image .social-icon a {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    left: 1098.76px;
    opacity: 0.6;
    color: var(--header);
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.team-wrapper .team-card-item .team-image .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.team-wrapper .team-card-item .team-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 9;
    border-radius: 8px;
}

.team-wrapper .team-card-item .team-content {
    margin-top: 20px;
}

.team-wrapper .team-card-item .team-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

.team-wrapper .team-card-item .team-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-wrapper .team-card-item .team-content p {
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.team-wrapper .team-card-item:hover .social-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.team-wrapper .team-card-item:hover .team-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.team-wrapper .team-card-item:hover .team-image::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.team-wrapper .team-card-item:hover .team-content p {
    color: #ff7a38;
}

.team-wrapper .team-card-item .team-content h3 a {
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s ease;
}

.team-wrapper .team-card-item .team-content h3 a:hover {
    color: #ff5f1f;
}

.team-wrapper .team-card-item .team-content p {
    color: #ff7a38;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.8px;
}

.team-wrapper .team-card-item.style-inner .team-content h3 a {
    color: #ffffff;
}

.team-wrapper .team-card-item.style-inner:hover .team-content p {
    color: #ff7a38;
}

.team-details-wrapper .team-details-image {
    overflow: hidden;
    border-radius: 12px;
}

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.team-details-wrapper .team-details-content {
    margin-left: 30px;
    background-color: #F2F5F7;
    border-radius: 10px;
    padding: 45px 40px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content .offer {
    background-color: var(--theme);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 6px;
}

.team-details-wrapper .team-details-content h2 {
    margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom {
    margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom li {
    display: flex;
    gap: 100px;
    align-items: center;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .team-infrom li {
        display: grid;
        gap: 20px;
    }
}

.team-details-wrapper .team-details-content .team-infrom li span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    flex-basis: 28%;
}

.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
    margin-bottom: 12px;
}

.team-details-wrapper .team-details-content h5 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 60px;
}

.team-details-wrapper .team-details-content .social-icon {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
    color: var(--theme);
    background: var(--bg);
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.team-details-wrapper .team-middle-items .team-skill-area {
    margin-top: 60px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content {
    margin-right: 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-middle-items .team-skill-area .skill-content {
        margin-right: 0;
    }
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items {
    width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .title {
    color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress {
    background-color: rgba(249, 77, 0, 0.5);
    justify-content: flex-start;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 6px;
    width: 0;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 69%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }

    100% {
        width: 80%;
    }
}

@keyframes load3 {
    0% {
        width: 0;
    }

    100% {
        width: 98%;
    }
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li {
    display: flex;
    gap: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li:not(:last-child) {
    margin-bottom: 20px;
}

.team-details-wrapper .team-bottom-items {
    margin-top: 120px;
    border-radius: 10px;
    background: var(--white);
    padding: 80px 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 100px;
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-bottom-items {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-bottom-items {
        padding: 30px;
    }
}

.team-details-wrapper .team-bottom-items .team-left-items p {
    margin-top: 20px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
    display: flex;
    gap: 10px;
    border-radius: 70px;
    border: 1px solid #3D4857;
    display: inline-flex;
    padding: 20px;
    font-weight: 600;
    line-height: 1;
    margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items {
    margin-left: 80px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items .team-right-items {
        margin-left: 0;
    }
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
    margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
    outline: none;
    width: 100%;
    color: var(--header);
    padding-bottom: 20px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    text-transform: capitalize;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
    border: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    background-color: transparent;
    width: 100%;
    height: initial;
    line-height: initial;
    text-transform: capitalize;
    color: var(--header);
    padding-bottom: 20px;
    border-radius: 0;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
    width: 8px;
    height: 8px;
    right: 12px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
    width: 100%;
}

.testimonial-box-item {
    background-color: var(--white);
    padding: 60px;
    border-radius: 12px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .testimonial-box-item {
        padding: 30px;
    }
}

.testimonial-box-item .star {
    color: var(--theme);
    margin-bottom: 20px;
}

.testimonial-box-item p {
    font-weight: 500;
    font-size: 22px;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    border-bottom: 1px solid rgba(2, 6, 10, 0.08);
    padding-bottom: 30px;
    line-height: 136%;
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .testimonial-box-item p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

.testimonial-box-item .client-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .testimonial-box-item .client-info-item {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.testimonial-box-item .client-info-item .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-box-item .client-info-item .info-item img {
    border-radius: 5px;
}

.testimonial-box-item .client-info-item .logo-image {
    text-align: right;
}

.testimonial-box-item .client-info-item .logo-image img {
    opacity: 0.4;
}

.testimonial-section {
    position: relative;
}

.testimonial-section .section-title h2,
.testimonial-section .section-title h2 .text-anim,
.testimonial-section .section-title h2 div,
.testimonial-section .section-title h2 span {
    color: var(--white) !important;
}

.testimonial-section .array-button .array-prev {
    position: absolute;
    top: 55%;
    left: 280px;
    border: 1px solid var(--header);
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section .array-button .array-prev {
        top: 55%;
        left: 45px;
    }
}

.testimonial-section .array-button .array-prev:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.testimonial-section .array-button .array-next {
    position: absolute;
    top: 55%;
    right: 280px;
    background-color: var(--theme);
    color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section .array-button .array-next {
        top: 55%;
        right: 45px;
    }
}

.testimonial-section .array-button .array-next:hover {
    background-color: var(--header);
}

@media (max-width: 1399px) {
    .testimonial-section .array-button {
        display: none;
    }
}

.testimonial-content {
    margin-top: 30px;
    text-align: center;
}

.testimonial-content .star {
    color: var(--theme);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    max-width: 885px;
    margin-bottom: 40px;
    margin: 0 auto;
    color: #02060A;
    opacity: 0.7;
    line-height: 158%;
}

@media (max-width: 1399px) {
    .testimonial-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-content p {
        font-size: 16px;
    }
}

.testimonial-content .client-image {
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .testimonial-content .client-image {
        margin-top: 30px;
    }
}

.testimonial-content .client-image img {
    border-radius: 6px;
}

.testimonial-content h4 {
    margin-top: 30px;
    margin-bottom: 5px;
}

.testimonial-section-2 {
    position: relative;
}

.testimonial-section-2 .array-button {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 410px;
    right: 410px;
    transform: translateY(-50%);
    z-index: 99;
}

@media (max-width: 1899px) {
    .testimonial-section-2 .array-button {
        left: 200px;
        right: 200px;
    }
}

@media (max-width: 1399px) {
    .testimonial-section-2 .array-button {
        display: none;
    }
}

.testimonial-section-2 .array-button .array-prev {
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    z-index: 999;
}

.testimonial-section-2 .array-button .array-prev:hover {
    background-color: var(--theme);
}

.testimonial-section-2 .array-button .array-next {
    background-color: var(--theme);
    color: var(--white);
    z-index: 999;
}

.testimonial-section-2 .array-button .array-next:hover {
    background-color: var(--header);
}

.testimonial-wrapper-3 {
    margin-top: 48px;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 {
        margin-top: 30px;
    }
}

.testimonial-wrapper-3 .testimonial-thumb {
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-wrapper-3 .testimonial-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.testimonial-wrapper-3 .testimonial-box-3 {
    background-color: var(--white);
    border-radius: 8px;
    padding: 60px 32px;
    position: relative;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 {
        padding: 30px;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .swiper-dot {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 999;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 .swiper-dot {
        display: none;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .star {
    color: var(--theme);
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .star {
        margin-bottom: 25px;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 p {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    color: rgba(2, 6, 10, 0.7);
    max-width: 575px;
    border-bottom: 1px solid rgba(2, 6, 10, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 p {
        padding-bottom: 30px;
        margin-bottom: 30px;
        font-size: 16px;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .info-item img {
    border-radius: 5px;
}

.testimonial-box-item-4 {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .testimonial-box-item-4 {
        padding: 30px;
    }
}

.testimonial-box-item-4 .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(2, 6, 10, 0.08);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.testimonial-box-item-4 .info-item img {
    border-radius: 5px;
}

.testimonial-box-item-4 p {
    font-weight: 500;
    font-size: 22px;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
    line-height: 136%;
}

@media (max-width: 1399px) {
    .testimonial-box-item-4 p {
        font-size: 16px;
    }
}

.testimonial-box-item-4 .star {
    color: var(--theme);
    margin-top: 20px;
}

.testimonial-section-4 {
    position: relative;
}

.testimonial-section-4 .array-button .array-prev {
    position: absolute;
    top: 64%;
    left: 280px;
    border: 1px solid var(--header);
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section-4 .array-button .array-prev {
        top: 64%;
        left: 154px;
    }
}

.testimonial-section-4 .array-button .array-prev:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.testimonial-section-4 .array-button .array-next {
    position: absolute;
    top: 64%;
    right: 280px;
    background-color: var(--theme);
    color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section-4 .array-button .array-next {
        top: 64%;
        right: 154px;
    }
}

.testimonial-section-4 .array-button .array-next:hover {
    background-color: var(--header);
}

@media (max-width: 1399px) {
    .testimonial-section-4 .array-button {
        display: none;
    }
}

.testimonial-section-4 .testimonial-slider-4 {
    margin-left: -360px;
    margin-right: -360px;
}

@media (max-width: 1399px) {
    .testimonial-section-4 .testimonial-slider-4 {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.array-button {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.array-button .array-prev {
    border-radius: 100px;
    border: 1px solid #E6E8EB;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
}

.array-button .array-next {
    border-radius: 100px;
    background-color: var(--theme);
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.array-button .array-next:hover {
    background-color: var(--header);
}

.swiper-dot {
    position: relative;
    text-align: center;
    margin-top: 45px;
}

@media (max-width: 1399px) {
    .swiper-dot {
        margin-top: 30px;
    }
}

.swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 0.6s;
    background-color: var(--header);
    opacity: 1;
    border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 5px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: 0.6s;
    position: relative;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--bg);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.brand-slide-element {
    width: auto;
    display: inline-block;
}

.p-relative {
    position: relative;
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-nav-wrap {
    margin-top: 60px;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
    background-color: var(--theme);
    color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 0;
    background: var(--header);
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border-radius: 50%;
    font-family: var(--font-heading), "Plus Jakarta Sans", sans-serif;
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

.page-nav-wrap ul li .page-numbers:hover i {
    color: var(--white);
}

.actually-area .bg-area {
    position: absolute;
    top: 40%;
    left: 51%;
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--header);
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.tilt_scale {
    transition: transform 0.2s ease;
    display: inline-block;
}

.no-break {
    white-space: nowrap;
    /* Keeps "My Background and Expertise" together */
}

/* Optional: styling for words split animation */
.split-word {
    display: inline-block;
    /* Required for animation */
    opacity: 0;
}

.reveal-img {
    opacity: 0;
    /* start invisible */
    transform: translateX(-600px);
    /* start left */
}

.arrow-path {
    width: 220px;
    height: 130px;
    color: black;
    stroke-dasharray: 1000;
    animation: draw 10s linear infinite;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.image-wrapper {
    position: relative;
    transition: all 0.8s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.animated-image {
    display: block;
    transform: translateY(100%);
    opacity: 0;
}

/* preloader শেষ হলে active class যোগ হবে */
.image-wrapper.active .animated-image {
    transform: translateY(0);
    opacity: 1;
}

/* Ensure the link inherits styles from its parent */
.wt-about-title2 a {
    display: inline-block;
    /* Needed for transform animations */
    color: inherit;
    text-decoration: inherit;
}

.project-section-3 .line-ani {
    margin-top: -25px;
}

@media (max-width: 1399px) {
    .project-section-3 .line-ani {
        display: none;
    }
}

.brand-container {
    max-width: 1660px;
    margin: 0 auto;
}

.gt-text-scale-anim {
    white-space: pre-wrap;
    transform-origin: top left;
}

.gt-letter-span {
    display: inline-block;
}

.gt-word-span {
    display: inline-block;
}

.p-relative {
    position: relative;
    z-index: 99;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.custom-container {
    max-width: 1323px;
    margin: 0 auto;
}

.p-relative {
    position: relative;
}

.tp-clip-anim {
    position: relative;
    overflow: hidden;
}

.tp-clip-anim .mask {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    opacity: 0;
    animation: reveal 1s forwards;
}

.tp-clip-anim .mask-1 {
    clip-path: inset(0 88.8% 0 0%);
    animation-delay: 0.1s;
}

.tp-clip-anim .mask-2 {
    clip-path: inset(0 77.7% 0 11.1%);
    animation-delay: 0.2s;
}

.tp-clip-anim .mask-3 {
    clip-path: inset(0 66.6% 0 22.2%);
    animation-delay: 0.3s;
}

.tp-clip-anim .mask-4 {
    clip-path: inset(0 55.5% 0 33.3%);
    animation-delay: 0.4s;
}

.tp-clip-anim .mask-5 {
    clip-path: inset(0 44.4% 0 44.4%);
    animation-delay: 0.5s;
}

.tp-clip-anim .mask-6 {
    clip-path: inset(0 33.3% 0 55.5%);
    animation-delay: 0.6s;
}

.tp-clip-anim .mask-7 {
    clip-path: inset(0 22.2% 0 66.6%);
    animation-delay: 0.7s;
}

.tp-clip-anim .mask-8 {
    clip-path: inset(0 11.1% 0 77.7%);
    animation-delay: 0.8s;
}

.tp-clip-anim .mask-9 {
    clip-path: inset(0 0% 0 88.8%);
    animation-delay: 0.9s;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: scale(1.2);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ==========================================================================
   Softquix Infoway - Premium Lead Engine & Conversion System Styles
   ========================================================================== */

/* High-Contrast White Text in Animated Headings */
.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.section-title h2.text-white,
.section-title h2.text-white span,
.section-title h2.text-white div,
.testimonial-section .section-title h2,
.testimonial-section .section-title h2 span,
.testimonial-section .section-title h2 div,
.faq-section .section-title h2,
.faq-section .section-title h2 span,
.faq-section .section-title h2 div,
.news-section .section-title h2,
.news-section .section-title h2 span,
.news-section .section-title h2 div,
.counter-section .counter-box-item h2,
.counter-section .counter-box-item h2 span,
.counter-section .counter-box-item h4 {
    color: #ffffff !important;
}

/* Hero Ambient Lighting & Trust Strip */
.hero-ambient-glow {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 95, 31, 0.12) 0%, rgba(255, 95, 31, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-pill i {
    color: #ff5f1f;
    font-size: 14px;
}

.trust-pill:hover {
    background: rgba(255, 95, 31, 0.18);
    border-color: #ff5f1f;
    transform: translateY(-2px);
}

.hero-trust-card {
    position: absolute;
    background: rgba(18, 18, 18, 0.88);
    border: 1px solid rgba(255, 95, 31, 0.35);
    backdrop-filter: blur(14px);
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 8;
}

.trust-card-top {
    top: 10%;
    right: 5%;
}

.trust-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff5f1f, #e04b0d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-card-text strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.trust-card-text span {
    display: block;
    color: #b0b0b0;
    font-size: 12px;
}

/* Authority Strip (Gujarat Tech Hub & Global Sprints) */
.sq-authority-strip {
    background: #0d0703;
    border-top: 1px solid rgba(255, 95, 31, 0.2);
    border-bottom: 1px solid rgba(255, 95, 31, 0.2);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.sq-authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .sq-authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .sq-authority-grid {
        grid-template-columns: 1fr;
    }
}

.sq-auth-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sq-auth-item:last-child {
    border-right: none;
}

.sq-auth-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 95, 31, 0.12);
    border: 1px solid rgba(255, 95, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5f1f;
    font-size: 20px;
    flex-shrink: 0;
}

.sq-auth-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.sq-auth-item span {
    display: block;
    color: #9e9e9e;
    font-size: 12.5px;
}

/* Industry Solutions Matrix */
.sq-industries-section {
    background: #fdfbf8;
    position: relative;
}

.sq-industry-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    border: 1px solid rgba(255, 95, 31, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(255, 95, 31, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sq-industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff5f1f 0%, #ff8c5a 50%, #ffa37b 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sq-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(255, 95, 31, 0.15), 0 6px 16px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 95, 31, 0.45);
}

.sq-industry-card:hover::before {
    opacity: 1;
}

.sq-ind-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff2eb 0%, #ffe5d8 100%);
    border: 1px solid rgba(255, 95, 31, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5f1f;
    font-size: 25px;
    margin-bottom: 22px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(255, 95, 31, 0.12);
}

.sq-industry-card:hover .sq-ind-icon-box {
    background: linear-gradient(135deg, #ff5f1f 0%, #ff7e42 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 8px 22px rgba(255, 95, 31, 0.45);
}

.sq-industry-card h4 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #121212;
    letter-spacing: -0.2px;
}

.sq-industry-card p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.68;
    margin-bottom: 22px;
    flex-grow: 1;
}

.sq-ind-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.sq-ind-tags span {
    font-size: 11.5px;
    font-weight: 600;
    background: rgba(255, 95, 31, 0.07);
    color: #ff5f1f;
    border: 1px solid rgba(255, 95, 31, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.sq-industry-card:hover .sq-ind-tags span {
    background: rgba(255, 95, 31, 0.14);
    border-color: rgba(255, 95, 31, 0.4);
    color: #e54c0e;
}

/* 4-Step Transparent Agile Process */
.sq-process-section {
    background: #0f0804;
    position: relative;
    overflow: hidden;
}

.sq-process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 28px;
    position: relative;
    height: 100%;
    transition: all 0.35s ease;
}

.sq-process-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 95, 31, 0.4);
    transform: translateY(-6px);
}

.sq-step-num {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 38px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.sq-proc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 95, 31, 0.15);
    border: 1px solid rgba(255, 95, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5f1f;
    font-size: 22px;
    margin-bottom: 22px;
}

.sq-process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.sq-process-card p {
    font-size: 14px;
    color: #a5a5a5;
    line-height: 1.65;
    margin: 0;
}

/* Interactive 24-Hour Project Lead Generator Engine */
.sq-lead-engine-section {
    background: #f8f6f0;
    position: relative;
}

.sq-lead-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sq-lead-header {
    background: linear-gradient(135deg, #0d0703 0%, #1f0e05 100%);
    padding: 40px;
    color: #ffffff;
    border-bottom: 3px solid #ff5f1f;
}

.sq-lead-body {
    padding: 45px 40px;
}

.sq-option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.sq-option-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #333;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.sq-option-pill input[type="radio"],
.sq-option-pill input[type="checkbox"] {
    accent-color: #ff5f1f;
    margin: 0;
    cursor: pointer;
}

.sq-option-pill:hover,
.sq-option-pill.active {
    background: #fff2ec;
    border-color: #ff5f1f;
    color: #ff5f1f;
}

.sq-form-input {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 0 18px;
    font-size: 14.5px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.sq-form-input:focus {
    background: #fff;
    border-color: #ff5f1f;
    box-shadow: 0 0 0 3px rgba(255, 95, 31, 0.12);
}

.sq-form-textarea {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 14px 18px;
    font-size: 14.5px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
    resize: vertical;
}

.sq-form-textarea:focus {
    background: #fff;
    border-color: #ff5f1f;
    box-shadow: 0 0 0 3px rgba(255, 95, 31, 0.12);
}

/* Lead Engine Form Footer & Submit Button */
.sq-lead-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #f0edf0;
}

.sq-lead-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff8f5;
    border: 1px solid rgba(255, 95, 31, 0.16);
    border-radius: 14px;
    padding: 10px 16px;
}

.sq-guar-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff5f1f 0%, #e04800 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 95, 31, 0.3);
}

.sq-guar-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.sq-guar-text span {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.sq-lead-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff5f1f 0%, #ea4c0c 100%);
    color: #ffffff;
    font-family: var(--font-heading), "Oxanium", "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(255, 95, 31, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.sq-lead-submit-btn:hover {
    background: linear-gradient(135deg, #ff7235 0%, #ff5f1f 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 95, 31, 0.5);
    color: #ffffff;
}

.sq-lead-submit-btn i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.sq-lead-submit-btn:hover i {
    transform: translate(2px, -2px);
}

/* Floating WhatsApp Quick Connect Button */
.sq-floating-lead-hub {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99999;
}

.sq-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    padding: 13px 22px 13px 18px;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.sq-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.sq-whatsapp-btn i {
    font-size: 26px;
    color: #ffffff;
}

.sq-wa-badge {
    font-family: "Oxanium", "Rajdhani", sans-serif;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .sq-wa-badge {
        display: none;
    }

    .sq-whatsapp-btn {
        padding: 14px;
        border-radius: 50%;
    }

    .sq-floating-lead-hub {
        bottom: 20px;
        left: 20px;
    }
}


/* ==========================================================================
   Softquix Infoway - Ultra-Modern Portfolio & Case Study Styles
   ========================================================================== */

.sq-portfolio-hero {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 45px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sq-portfolio-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sq-portfolio-hero:hover img {
    transform: scale(1.02);
}

.sq-portfolio-meta-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sq-portfolio-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sq-portfolio-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sq-portfolio-meta-item:first-child {
    padding-top: 0;
}

.sq-meta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff2ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5f1f;
    font-size: 18px;
    flex-shrink: 0;
}

.sq-meta-text span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888888;
    font-weight: 600;
    margin-bottom: 3px;
}

.sq-meta-text strong {
    display: block;
    font-size: 15px;
    color: #111111;
    font-weight: 700;
}

/* Visual Gallery Grid */
.sq-portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 991px) {
    .sq-portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .sq-portfolio-gallery {
        grid-template-columns: 1fr;
    }
}

.sq-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #f8f8f8;
    transition: all 0.35s ease;
}

.sq-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(255, 95, 31, 0.12);
}

.sq-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sq-gallery-item:hover img {
    transform: scale(1.05);
}

/* Full Width Showcases */
.sq-showcase-banner {
    border-radius: 20px;
    overflow: hidden;
    margin: 35px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sq-showcase-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Impact Metrics Strip */
.sq-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 35px 0;
}

@media (max-width: 767px) {
    .sq-impact-grid {
        grid-template-columns: 1fr;
    }
}

.sq-impact-card {
    background: linear-gradient(135deg, #0d0703 0%, #1f0f06 100%);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(255, 95, 31, 0.25);
    color: #ffffff;
}

.sq-impact-card h3 {
    font-size: 34px;
    font-weight: 800;
    color: #ff5f1f;
    margin-bottom: 6px;
}

.sq-impact-card p {
    font-size: 13.5px;
    color: #d0d0d0;
    margin: 0;
}


/* Portfolio Listing & Filter System */
.sq-filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.sq-filter-pill {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 24px;
    border-radius: 30px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.sq-filter-pill:hover,
.sq-filter-pill.active {
    background: #ff5f1f;
    border-color: #ff5f1f;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 95, 31, 0.25);
}

/* Ocean-Style 3-Column Client Success Tiles */
.sq-client-tile {
    position: relative;
    height: 250px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sq-client-tile.theme-dark {
    background: #0f1015;
    border-color: rgba(255, 255, 255, 0.08);
}

.sq-client-tile.theme-light-blue {
    background: #f0f7fc;
    border-color: #dceaf5;
}

.sq-client-tile.theme-subtle-gray {
    background: #f9f9f9;
    border-color: #eaeaea;
}

.sq-client-tile:hover {
    transform: translateY(-6px);
    border-color: #ff5f1f;
    box-shadow: 0 15px 35px rgba(255, 95, 31, 0.15);
}

.sq-client-tile-img {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sq-client-tile:hover .sq-client-tile-img {
    transform: scale(1.08);
}

.sq-client-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, 0.88);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 5;
}

.sq-client-tile:hover .sq-client-overlay {
    opacity: 1;
}

.sq-overlay-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sq-overlay-title i {
    color: #ff5f1f;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.sq-client-tile:hover .sq-overlay-title i {
    transform: translate(3px, -3px);
}

.sq-overlay-cat {
    color: #ff5f1f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Filter Header Style (Image 3 Style) */
.sq-portfolio-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 18px;
    margin-bottom: 35px;
}

.sq-portfolio-header-bar h2 {
    font-size: 26px;
    font-weight: 800;
    color: #111111;
    margin: 0;
}


.sq-portfolio-card:hover .sq-portfolio-link {
    color: #ff5f1f;
    gap: 12px;
}

/* Products Modern Card Styles */
.sq-product-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 30px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sq-product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255, 95, 31, 0.12);
    border-color: rgba(255, 95, 31, 0.4);
}

.sq-prod-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fff2ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5f1f;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.sq-product-box:hover .sq-prod-icon {
    background: #ff5f1f;
    color: #ffffff;
    transform: scale(1.1);
}

.sq-product-box h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
}

.sq-product-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.sq-prod-features {
    margin-bottom: 24px;
}

.sq-prod-features li {
    font-size: 13.5px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sq-prod-features li i {
    color: #ff5f1f;
    font-size: 13px;
}

/* ==========================================================================
   Technical Skills & Core IT Agency Capabilities Matrix Styles
   ========================================================================== */

.sq-skills-section {
    background: #fdfbf8;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 80px 0;
}

.sq-skill-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sq-skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(255, 95, 31, 0.12);
    border-color: rgba(255, 95, 31, 0.35);
}

.sq-skill-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sq-skill-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff2ec;
    color: #ff5f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sq-skill-card:hover .sq-skill-icon {
    background: #ff5f1f;
    color: #ffffff;
    transform: scale(1.08);
}

.sq-skill-header h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    margin: 0;
}

.sq-skill-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sq-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sq-skill-tag {
    font-size: 12px;
    font-weight: 600;
    background: #f4f4f6;
    color: #333333;
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.sq-skill-card:hover .sq-skill-tag {
    background: #fff2ec;
    color: #ff5f1f;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Architecture for Softquix
   Covers viewports from 320px (ultra-compact) to 991px (tablet)
   ========================================================================== */

/* Prevent horizontal scroll across the entire site */
html,
body,
#smooth-wrapper,
#smooth-content {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* Ready to Build CTA Card Base Styles */
.sq-ready-cta-card {
    background: linear-gradient(135deg, #0f0703 0%, #1f0f06 100%);
    border-radius: 28px;
    padding: 42px 35px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 95, 31, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.sq-ready-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 95, 31, 0.35) 0%, rgba(255, 95, 31, 0) 70%);
    pointer-events: none;
}

.sq-ready-badge {
    color: #ff5f1f;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.sq-ready-cta-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.sq-ready-cta-card p {
    font-size: 14.5px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 28px;
}

.sq-ready-btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Scope Calculator Lead Engine Base Styles */
.sq-lead-badge {
    color: #ff5f1f;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
}

.sq-lead-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.28;
}

.sq-lead-nda {
    background: rgba(255, 95, 31, 0.2);
    border: 1px solid #ff5f1f;
    color: #ff5f1f;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.sq-step-label {
    font-weight: 700;
    font-size: 15px;
    color: #222;
    margin-bottom: 12px;
    display: block;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0 !important;
    }

    .hero-1 {
        padding: 100px 0 60px !important;
    }

    .hero-1 .hero-image {
        margin-left: 0 !important;
        margin-top: 30px !important;
        max-width: 100% !important;
    }

    .hero-1 .hero-image img {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .hero-1 .hero-content {
        margin-bottom: 0 !important;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 45px 0 !important;
    }

    /* Brand Slider Mobile */
    .brand-section {
        padding: 20px 0 !important;
    }

    .brand-box-1 {
        height: 75px !important;
        line-height: 75px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .brand-box-1 .brand-img-1 img {
        max-height: 32px !important;
        max-width: 105px !important;
        object-fit: contain !important;
    }

    /* Hero Section Mobile */
    .hero-1 {
        padding: 85px 0 45px !important;
        border-radius: 0 0 16px 16px !important;
    }

    .hero-1 .hero-content h6 {
        font-size: 11px !important;
        padding: 5px 10px !important;
        line-height: 1.35 !important;
        white-space: normal !important;
        display: inline-flex !important;
        align-items: center;
        max-width: 100%;
    }

    .hero-1 .hero-content h1 {
        font-size: clamp(24px, 6.5vw, 34px) !important;
        line-height: 1.25 !important;
        margin-top: 14px !important;
        margin-bottom: 14px !important;
    }

    .hero-1 .hero-content p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .hero-1 .hero-content .hero-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .hero-1 .hero-content .hero-btn .theme-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 13px 20px !important;
        font-size: 13.5px !important;
        text-align: center !important;
    }

    .hero-trust-strip {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-top: 20px !important;
        padding-top: 16px !important;
    }

    .hero-trust-strip .trust-pill {
        font-size: 11.5px !important;
        padding: 5px 10px !important;
        gap: 5px !important;
    }

    .hero-trust-card.trust-card-top {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-top: 15px !important;
        width: 100% !important;
        padding: 10px 14px !important;
        box-sizing: border-box !important;
    }

    .hero-trust-card .trust-card-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 15px !important;
    }

    .hero-trust-card .trust-card-text strong {
        font-size: 13px !important;
    }

    .hero-trust-card .trust-card-text span {
        font-size: 11px !important;
    }

    .ratting-image {
        margin-top: 15px !important;
    }

    /* Section Titles */
    .section-title h2,
    .section-title h2.text-anim,
    .section-title h2.tx-title {
        font-size: clamp(21px, 5.5vw, 26px) !important;
        line-height: 1.3 !important;
    }

    .section-title .sub-title {
        font-size: 11.5px !important;
        margin-bottom: 8px !important;
    }

    /* About Section Mobile */
    .about-content .about-item {
        padding-left: 0 !important;
    }

    .about-content .about-item .count-item {
        margin-bottom: 20px !important;
    }

    .about-content .about-item .count-item h2 {
        font-size: 36px !important;
    }

    /* Services Section */
    .service-box-item {
        padding: 24px 18px !important;
    }

    /* Industry Solutions Mobile */
    .sq-industries-section .sq-industry-card {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    .sq-industries-section .sq-industry-card h4 {
        font-size: 18px !important;
    }

    .sq-industries-section .sq-industry-card p {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    /* Project Cards Mobile */
    .project-panel-area .project-card-items,
    .project-card-items.project-panel {
        padding: 18px 16px !important;
        border-radius: 18px !important;
    }

    .project-panel-area .project-card-items .project-thumb,
    .project-box-wrapper .project-card-items .project-thumb {
        height: 200px !important;
        max-height: 200px !important;
        margin-bottom: 14px !important;
        border-radius: 14px !important;
    }

    .project-panel-area .project-card-items .project-thumb img,
    .project-box-wrapper .project-card-items .project-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    .project-panel-area .project-card-items .project-content h3 {
        font-size: 18px !important;
    }

    .project-panel-area .project-card-items .project-content p {
        font-size: 13px !important;
        line-height: 1.55 !important;
        margin-bottom: 16px !important;
    }

    /* Counter Section Mobile */
    .counter-box-item {
        padding: 20px 16px !important;
    }

    .counter-box-item .counter-top-item h2 {
        font-size: 32px !important;
    }

    .counter-box-item h4 {
        font-size: 15px !important;
    }

    /* Agile Process Steps Mobile */
    .sq-process-card {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    /* Ready to Build CTA Card Mobile */
    .sq-ready-cta-card {
        padding: 26px 18px !important;
        border-radius: 20px !important;
    }

    .sq-ready-cta-card h3 {
        font-size: 22px !important;
    }

    .sq-ready-cta-card p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .sq-ready-btn-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .sq-ready-btn-group .theme-btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Instant Scope Calculator Lead Engine Mobile */
    .sq-lead-card {
        border-radius: 20px !important;
    }

    .sq-lead-header {
        padding: 22px 16px !important;
    }

    .sq-lead-title {
        font-size: 20px !important;
        margin-top: 4px !important;
    }

    .sq-lead-nda {
        padding: 5px 12px !important;
        font-size: 11.5px !important;
    }

    .sq-lead-body {
        padding: 22px 16px !important;
    }

    .sq-step-label {
        font-size: 13.5px !important;
        margin-bottom: 10px !important;
    }

    .sq-option-pills {
        gap: 8px !important;
        margin-bottom: 16px !important;
    }

    .sq-option-pill {
        padding: 7px 12px !important;
        font-size: 12px !important;
        border-radius: 10px !important;
        gap: 6px !important;
    }

    .sq-form-input {
        height: 46px !important;
        font-size: 13px !important;
        padding: 0 14px !important;
        border-radius: 10px !important;
    }

    .sq-form-textarea {
        height: 90px !important;
        font-size: 13px !important;
        padding: 12px 14px !important;
        border-radius: 10px !important;
    }

    /* Lead Engine Footer Mobile */
    .sq-lead-footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 14px !important;
        margin-top: 18px !important;
        padding-top: 16px !important;
    }

    .sq-lead-guarantee {
        padding: 10px 12px !important;
        gap: 10px !important;
        border-radius: 12px !important;
    }

    .sq-guar-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }

    .sq-guar-text strong {
        font-size: 12.5px !important;
    }

    .sq-guar-text span {
        font-size: 11px !important;
    }

    .sq-lead-submit-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 13.5px !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 12px !important;
    }

    /* Skills & Capabilities Matrix Mobile */
    .sq-skills-section {
        padding: 50px 0 !important;
    }

    .sq-skill-card {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    /* Footer Mobile */
    .footer-section {
        padding-top: 50px !important;
    }
}

@media (max-width: 480px) {

    /* Extra Small Devices (iPhone SE, Galaxy S, 320px - 480px) */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-1 {
        padding: 75px 0 35px !important;
    }

    .hero-1 .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.22 !important;
    }

    .hero-1 .hero-content p {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .hero-trust-strip .trust-pill {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }

    .hero-1 .hero-content .hero-btn .theme-btn {
        padding: 11px 16px !important;
        font-size: 12.5px !important;
    }

    .section-title h2,
    .section-title h2.text-anim,
    .section-title h2.tx-title {
        font-size: 21px !important;
        line-height: 1.25 !important;
    }

    .sq-industry-card,
    .sq-skill-card,
    .sq-process-card {
        padding: 18px 14px !important;
    }

    .sq-option-pill {
        padding: 6px 10px !important;
        font-size: 11.5px !important;
    }

    .theme-btn {
        padding: 11px 18px !important;
        font-size: 12.5px !important;
    }
}

/* =========================================================
   ULTRA-PREMIUM SOFT & UNIQUE BUTTON STYLING (GLOBAL)
   ========================================================= */

/* Primary Theme Button & Global Buttons */
.theme-btn,
.sq-cta-btn,
.theme-btn.style-2,
.theme-btn.style-btn {
    background: linear-gradient(135deg, #ff5f1f 0%, #e0480b 100%) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 20px rgba(255, 95, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/* Smooth Glow Hover Effect */
.theme-btn:hover,
.sq-cta-btn:hover,
.theme-btn.style-2:hover,
.theme-btn.style-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 28px rgba(255, 95, 31, 0.45), 0 0 15px rgba(255, 95, 31, 0.3) !important;
    background: linear-gradient(135deg, #ff6d30 0%, #f05010 100%) !important;
    color: #ffffff !important;
}

/* Active Click Bounce */
.theme-btn:active,
.sq-cta-btn:active {
    transform: translateY(-1px) scale(0.99) !important;
    box-shadow: 0 4px 12px rgba(255, 95, 31, 0.3) !important;
}

/* Secondary / Outline Button (e.g., Get A Free Quote) */
.theme-btn.style-2,
.hero-1 .hero-content .hero-btn .theme-btn.style-2,
.theme-btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.theme-btn.style-2:hover,
.hero-1 .hero-content .hero-btn .theme-btn.style-2:hover,
.theme-btn-secondary:hover {
    background: rgba(255, 95, 31, 0.15) !important;
    border-color: rgba(255, 95, 31, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(255, 95, 31, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Header Get In Touch CTA Pill */
.sq-cta-btn {
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* Icon rotation micro-animation */
.theme-btn i,
.sq-cta-btn i {
    transition: transform 0.35s ease !important;
}

.theme-btn:hover i,
.sq-cta-btn:hover i {
    transform: translate(3px, -3px) rotate(12deg) !important;
}

/* Brand Slider Mobile: Single Logo Display */
@media (max-width: 575px) {

    .brand-slider .swiper-slide,
    .brand-slider-2 .swiper-slide,
    .brand-slider.style-2 .swiper-slide {
        width: 100% !important;
    }

    .brand-box-1 {
        margin: 0 auto !important;
        max-width: 280px !important;
        width: 100% !important;
    }
}

/* FAQ Mobile Accordion Responsiveness Fix */
.faq-items .accordion .accordion-item h2 button {
    position: relative !important;
    padding-right: 55px !important;
}

@media (max-width: 575px) {
    .faq-items .accordion .accordion-item h2 button {
        font-size: 14.5px !important;
        line-height: 1.35 !important;
        padding: 14px 48px 14px 14px !important;
    }

    .faq-items .accordion .accordion-button::before {
        top: 50% !important;
        transform: translateY(-50%) !important;
        right: 12px !important;
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 12px !important;
    }

    .faq-items .accordion .accordion-item .accordion-body p {
        font-size: 13px !important;
        line-height: 1.55 !important;
        padding: 10px 14px 16px !important;
    }
}

/* Global Sub-title Setting Icon Removal */
.sub-title img {
    display: none !important;
}

/* Contact Section Seamless Blend */
.contact-section-3 {
    margin: 0 !important;
    border-radius: 0 !important;
    background: #00000000 !important;
}

/* Footer Bottom Giant Branding Banner & Compact Spacing */
.footer-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer-area {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer-widget-wrapper {
    padding: 80px 0 20px !important;
}

.footer-bottom-wrapper {
    padding: 24px 0 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sq-footer-brand-banner {
    padding: 40px 0 10px !important;
    margin-bottom: -10px !important;
    overflow: hidden;
    text-align: center;
}

.sq-giant-brand-text {
    font-family: var(--font-heading), "Oxanium", sans-serif !important;
    font-size: 140px !important;
    font-weight: 900 !important;
    letter-spacing: 16px !important;
    text-transform: uppercase !important;
    color: transparent !important;
    -webkit-text-stroke: 1.5px rgba(255, 95, 31, 0.35) !important;
    background: linear-gradient(180deg, rgba(255, 95, 31, 0.45) 0%, rgba(255, 95, 31, 0.02) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    line-height: 0.9 !important;
    margin: 0 !important;
    padding: 0 !important;
    user-select: none !important;
    transition: all 0.5s ease !important;
}

.sq-giant-brand-text:hover {
    -webkit-text-stroke: 1.5px rgba(255, 95, 31, 0.8) !important;
    background: linear-gradient(180deg, #ff6d30 0%, rgba(255, 95, 31, 0.15) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    text-shadow: 0 0 35px rgba(255, 95, 31, 0.3) !important;
}

@media (max-width: 1199px) {
    .sq-giant-brand-text {
        font-size: 100px !important;
        letter-spacing: 10px !important;
    }
}

@media (max-width: 991px) {
    .sq-giant-brand-text {
        font-size: 75px !important;
        letter-spacing: 6px !important;
    }
}

/* Section Title Contrast */
.sq-skills-section .section-title h2 {
    color: #0f0703 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sq-skills-section .sub-title {
    color: #ff5f1f !important;
}

/* Service Section Header & Card Alignment Fix */
.service-section .section-title-area {
    align-items: flex-start !important;
    gap: 30px !important;
    margin-bottom: 45px !important;
}

.service-section .section-title-area .section-title {
    flex: 0 0 45% !important;
    max-width: 45% !important;
}

.service-section .section-title-area p {
    flex: 1 1 auto !important;
    max-width: 420px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: #555555 !important;
    margin: 0 !important;
    align-self: center !important;
}

.service-section .section-title-area .array-button {
    flex: 0 0 auto !important;
    display: flex !important;
    gap: 12px !important;
    align-self: center !important;
}

@media (max-width: 991px) {
    .service-section .section-title-area {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .service-section .section-title-area .section-title,
    .service-section .section-title-area p {
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
}

.service-section .service-slider .swiper-slide {
    height: auto !important;
    display: flex !important;
}

.service-section .service-box-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: #fcf9f5 !important;
    border-radius: 20px !important;
    padding: 35px 28px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    transition: all 0.35s ease !important;
}

.service-section .service-box-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 95, 31, 0.3) !important;
}

/* ==========================================================================
   1. PREMIUM BACKGROUND IMAGE OVERLAYS (CLEAN & SUBTLE)
   ========================================================================== */

/* Hero Section */
.hero-section.hero-1,
.hero-section {
    position: relative !important;
}

.hero-section.hero-1::before,
.hero-section::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(ellipse at 80% 25%, rgba(255, 95, 31, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 75%, rgba(255, 95, 31, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(6, 3, 10, 0.86) 0%, rgba(12, 6, 16, 0.76) 50%, rgba(5, 2, 8, 0.90) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.hero-ambient-glow {
    position: absolute !important;
    z-index: 1 !important;
}

.hero-section .container,
.hero-section .custom-container {
    position: relative !important;
    z-index: 3 !important;
}

/* Breadcrumb Wrapper (Inner Pages) */
.breadcrumb-wrapper,
.breadcrumb-wrapper.bg-cover {
    position: relative !important;
    overflow: hidden !important;
}

.breadcrumb-wrapper::before,
.breadcrumb-wrapper.bg-cover::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 50% 100%, rgba(255, 95, 31, 0.18) 0%, transparent 65%),
        linear-gradient(180deg, rgba(14, 6, 2, 0.65) 0%, rgba(22, 9, 4, 0.48) 50%, rgba(10, 4, 2, 0.72) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.breadcrumb-wrapper .container {
    position: relative !important;
    z-index: 3 !important;
}

/* Counter Section & Dark Sections Wrapper */
.counter-section.bg-cover,
div.bg-cover[style*="background-image"] {
    position: relative !important;
}

.counter-section.bg-cover::before,
div.bg-cover[style*="background-image"]::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 95, 31, 0.16) 0%, transparent 60%),
        linear-gradient(135deg, rgba(14, 6, 2, 0.68) 0%, rgba(24, 10, 4, 0.52) 50%, rgba(10, 4, 2, 0.74) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.counter-section .container,
div.bg-cover[style*="background-image"]>section {
    position: relative !important;
    z-index: 3 !important;
}

/* Footer Area */
.footer-area.bg-cover {
    position: relative !important;
}

.footer-area.bg-cover::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 95, 31, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(14, 6, 2, 0.70) 0%, rgba(20, 8, 3, 0.58) 50%, rgba(8, 3, 1, 0.78) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.footer-area.bg-cover .container {
    position: relative !important;
    z-index: 3 !important;
}

/* ==========================================================================
   2. ELEGANT LUXURY GRADIENT FOR CLIENT BRAND LOGO CARDS (.brand-box-1)
   ========================================================================== */
.brand-box-1 {
    height: 95px !important;
    line-height: 95px !important;
    text-align: center !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf9 55%, #f6eee4 100%) !important;
    border: 1px solid rgba(255, 95, 31, 0.18) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(255, 95, 31, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.brand-box-1:hover {
    transform: translateY(-4px) !important;
    background: linear-gradient(145deg, #ffffff 0%, #fff7f2 50%, #ffede3 100%) !important;
    border-color: rgba(255, 95, 31, 0.45) !important;
    box-shadow: 0 14px 30px rgba(255, 95, 31, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.brand-box-1 .brand-img-1 img {
    max-height: 48px !important;
    object-fit: contain !important;
    opacity: 0.92 !important;
    transition: all 0.35s ease !important;
}

.brand-box-1:hover .brand-img-1 img {
    opacity: 1 !important;
    filter: drop-shadow(0 4px 8px rgba(255, 95, 31, 0.15)) !important;
}

/* ==========================================================================
   3. TECH STACK SECTION - DARK GLOWING AMBER/RED THEME
   ========================================================================== */
.tech-stack-section {
    background: #0a0402 !important;
    position: relative !important;
    overflow: hidden !important;
}

.tech-stack-section::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 95, 31, 0.16) 0%, transparent 65%),
        radial-gradient(ellipse at 85% 80%, rgba(255, 95, 31, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, #0f0804 0%, #090402 50%, #0d0603 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.tech-stack-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.tech-stack-section .section-title h2 {
    color: #ffffff !important;
}

.tech-stack-section .section-title p {
    color: #b5b5b5 !important;
}

.tech-stack-section .sub-title {
    color: #ff5f1f !important;
}

.sq-tech-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 35px 24px !important;
    height: 100% !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.35s ease !important;
}

.sq-tech-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 95, 31, 0.45) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(255, 95, 31, 0.16) !important;
}

.sq-tech-icon-wrap {
    width: 58px !important;
    height: 58px !important;
    margin: 0 auto 20px !important;
    background: rgba(255, 95, 31, 0.14) !important;
    border: 1px solid rgba(255, 95, 31, 0.32) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ff5f1f !important;
    font-size: 24px !important;
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.2) !important;
    transition: all 0.35s ease !important;
}

.sq-tech-card:hover .sq-tech-icon-wrap {
    background: #ff5f1f !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 95, 31, 0.5) !important;
    transform: scale(1.06) !important;
}

.sq-tech-card h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.sq-tech-card p {
    font-size: 13.5px !important;
    color: #a5a5a5 !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
}

.sq-tech-badge {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #ff5f1f !important;
    background: rgba(255, 95, 31, 0.12) !important;
    border: 1px solid rgba(255, 95, 31, 0.3) !important;
    padding: 5px 14px !important;
    border-radius: 20px !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}

.sq-tech-card:hover .sq-tech-badge {
    background: rgba(255, 95, 31, 0.22) !important;
    border-color: #ff5f1f !important;
}

/* -------------------------------------------------------------
   Hero Service Pills (.hero-trust-strip & .trust-pill)
------------------------------------------------------------- */
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
    align-items: center;
}

.hero-trust-strip .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 7px 16px;
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-trust-strip .trust-pill i {
    color: #ff5f1f;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.hero-trust-strip .trust-pill:hover {
    background: rgba(255, 95, 31, 0.15);
    border-color: rgba(255, 95, 31, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 31, 0.25);
}

.hero-trust-strip .trust-pill:hover i {
    transform: scale(1.18);
    color: #ff7d45;
}

/* -------------------------------------------------------------
   Brand Text Ticker (Trusted By Teams At)
------------------------------------------------------------- */
.brand-ticker-section {
    background-color: #0b0705 !important;
    padding: 38px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    position: relative;
    overflow: hidden;
}

.brand-ticker-heading span {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #94a3b8;
    display: inline-block;
    margin-bottom: 22px;
}

.brand-ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
}

.brand-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: sqMarqueeTrack 30s linear infinite;
    will-change: transform;
}

.brand-ticker-track:hover {
    animation-play-state: paused;
}

.brand-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    margin-right: 32px;
    cursor: default;
    user-select: none;
}

.brand-ticker-text {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.brand-ticker-item:hover .brand-ticker-text {
    color: #ff5f1f;
    transform: translateY(-1px);
}

.brand-ticker-star {
    color: #ff5f1f !important;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(255, 95, 31, 0.7));
}

@keyframes sqMarqueeTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* -------------------------------------------------------------
   Hero Title Line Highlight (Software Development.)
------------------------------------------------------------- */
.hero-content h1 .hero-title-highlight,
.hero-content h1 span.text-theme {
    background: linear-gradient(135deg, #ff5f1f 0%, #ff833e 40%, #ffb366 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
    position: relative !important;
    font-weight: 800 !important;
    filter: drop-shadow(0 2px 20px rgba(255, 95, 31, 0.4)) !important;
    padding-bottom: 6px !important;
}

.hero-content h1 .hero-title-highlight::after,
.hero-content h1 span.text-theme::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 3.5px !important;
    border-radius: 4px !important;
    background: linear-gradient(90deg, #ff5f1f 0%, #ff8c42 60%, rgba(255, 140, 66, 0) 100%) !important;
    box-shadow: 0 0 14px rgba(255, 95, 31, 0.75) !important;
}

/* -------------------------------------------------------------
   Testimonial Review Cards (4 Lines Max Clamp with Ellipsis)
------------------------------------------------------------- */
.testimonial-box-item p {
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 98px !important;
    max-height: 98px !important;
    line-height: 24.5px !important;
    margin-bottom: 20px !important;
}

.testimonial-box-item {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
}

/* -------------------------------------------------------------
   Blog / News Cards (Uniform 3-Line Clamp & Height)
------------------------------------------------------------- */
.news-card-items {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    margin-bottom: 30px !important;
}

.news-card-items .news-top-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: 1 1 auto !important;
}

.news-card-items .news-top-content .news-content h3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 84px !important;
    max-height: 84px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
}

.news-card-items .news-top-content .news-content span {
    margin-top: 15px !important;
    display: inline-block !important;
}

/* -------------------------------------------------------------
   Luxury Favicon Animated Preloader
------------------------------------------------------------- */
.sq-brand-preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999999 !important;
    background-color: #060309 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease !important;
}

.sq-loader-scene {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    padding: 20px;
}

/* Ambient Deep Radial Glow */
.sq-loader-ambient-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 31, 0.22) 0%, rgba(255, 95, 31, 0.05) 50%, transparent 75%);
    filter: blur(40px);
    pointer-events: none;
    animation: sqAmbientPulse 3s ease-in-out infinite alternate;
}

/* Central Emblem Outer Wraps */
.sq-emblem-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Pulsing Energy Waves */
.sq-energy-wave {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 95, 31, 0.35);
    pointer-events: none;
}

.sq-wave-1 {
    width: 100%;
    height: 100%;
    animation: sqWaveExpand 2.4s cubic-bezier(0.1, 0.5, 0.4, 1) infinite;
}

.sq-wave-2 {
    width: 100%;
    height: 100%;
    animation: sqWaveExpand 2.4s cubic-bezier(0.1, 0.5, 0.4, 1) 1.2s infinite;
}

/* Orbiting Rings */
.sq-orbit-ring {
    position: absolute;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 95, 31, 0.5);
    animation: sqOrbitClockwise 4s linear infinite;
    pointer-events: none;
}

.sq-orbit-reverse {
    width: 104px;
    height: 104px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-top-color: #ff5f1f;
    border-bottom-color: #ff8c5a;
    animation: sqOrbitCounterClockwise 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.sq-orbit-particle {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f1f;
    box-shadow: 0 0 12px #ff5f1f, 0 0 20px #ff8c5a;
}

/* Favicon Center Core */
.sq-favicon-core {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 95, 31, 0.18) 0%, rgba(13, 7, 18, 0.95) 80%);
    border: 1px solid rgba(255, 95, 31, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 95, 31, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sqFaviconFloat 2.6s ease-in-out infinite alternate;
    z-index: 2;
}

.sq-favicon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(255, 95, 31, 0.7));
    transition: transform 0.3s ease;
}

/* Brand Text Section */
.sq-loader-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sq-brand-name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #ffffff;
    margin: 0 0 4px 0;
    display: flex;
    gap: 2px;
}

.sq-brand-name span {
    display: inline-block;
    animation: sqLetterGlow 1.8s ease-in-out infinite;
}

.sq-brand-name span:nth-child(1) { animation-delay: 0.1s; }
.sq-brand-name span:nth-child(2) { animation-delay: 0.2s; }
.sq-brand-name span:nth-child(3) { animation-delay: 0.3s; }
.sq-brand-name span:nth-child(4) { animation-delay: 0.4s; }
.sq-brand-name span:nth-child(5) { animation-delay: 0.5s; }
.sq-brand-name span:nth-child(6) { animation-delay: 0.6s; }
.sq-brand-name span:nth-child(7) { animation-delay: 0.7s; }
.sq-brand-name span:nth-child(8) { animation-delay: 0.8s; }

.sq-brand-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #ff5f1f;
    text-transform: uppercase;
    margin-bottom: 22px;
}

/* Progress Track and Bar */
.sq-progress-track {
    width: 190px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
}

.sq-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff5f1f, #ff945e, #ffffff);
    border-radius: 10px;
    box-shadow: 0 0 10px #ff5f1f;
    animation: sqProgressFill 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.sq-tagline {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Animations */
@keyframes sqAmbientPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1; }
}

@keyframes sqWaveExpand {
    0% { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes sqOrbitClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sqOrbitCounterClockwise {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes sqFaviconFloat {
    0% { transform: translateY(0) scale(0.98); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 95, 31, 0.3); }
    100% { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 95, 31, 0.55); }
}

@keyframes sqLetterGlow {
    0%, 100% { color: #ffffff; text-shadow: none; }
    50% { color: #ff8c5a; text-shadow: 0 0 14px rgba(255, 95, 31, 0.8); }
}

@keyframes sqProgressFill {
    0% { width: 5%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.sq-brand-preloader.loaded {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/*# sourceMappingURL=main.css.map */