:root {
    --theme-font-outfit: "Outfit", sans-serif;
    --theme-font-inter: "Inter", sans-serif;
    --theme-primary-color: 5, 88, 238;
    --theme-text-black: 76, 76, 76;
    --theme-text-gery: 109, 109, 109;
    --theme-card-bg: 237, 247, 255;
    --theme-bg-gery: 109, 109, 109;
    --viewport-height: 70vh;
    --viewport-height-m: 60vh;
    --block-offset: 80px;
    --block-offset-m: 40px;
    --perspective: 1800px;
    --perspective-m: 1200px;
    --whatapp-brand-color: #25d366;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--theme-font-outfit);
    background: rgb(var(--theme-body-bg-color));
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
p {
    font-family: var(--theme-font-inter);
}
a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    color: rgb(var(--theme-color-primary));
}
a:hover {
    color: rgb(var(--theme-color-primary-hover));
    text-decoration: none;
}
li,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.swiper-wrapper {
    height: unset !important;
}
.swiper-slide {
    height: unset !important;
}
.fix {
    overflow: hidden;
}
.clear {
    clear: both;
}
.theme_common_width {
    max-width: 1780px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.theme_common_width_inner {
    border-radius: 34px;
    background-color: rgb(var(--theme-card-bg));
}
.theme_common_width-2 {
    max-width: 1750px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.theme_common_width-2_inner {
    border-radius: 8px;
    background-color: rgb(var(--theme-card-bg));
}
.theme_common_width-3 {
    max-width: 1790px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.theme_common_width-3_inner {
    border-radius: 16px;
    background-color: rgb(var(--theme-card-bg));
}
.theme_border-top {
    border-top: 1px solid rgba(var(--theme-primary-color), 0.2);
}
.theme_border-bottom {
    border-bottom: 1px solid rgba(var(--theme-primary-color), 0.2);
}
.theme_dark_bg {
    background-color: #0f0f0f;
}
.pt-205 {
    padding-top: 205px;
}
.mb-05 {
    margin-bottom: 5px;
}
.theme_navigation {
    display: flex;
    gap: 15px;
    align-items: center;
}
.theme_navigation div {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(var(--theme-primary-color), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgb(var(--theme-primary-color));
}
.theme_navigation div:hover {
    background: rgb(var(--theme-primary-color));
    color: #fff;
}
.theme_border-bottom {
    border-bottom: 1px solid rgba(var(--theme-primary-color), 0.2);
}
.pb-10 {
    padding-bottom: 10px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-70 {
    padding-bottom: 70px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-15 {
    padding-top: 15px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-95 {
    padding-top: 95px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-80 {
    margin-top: 80px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-65 {
    margin-bottom: 65px;
}
.mb-85 {
    margin-bottom: 85px;
}
.mr-15 {
    margin-right: 15px;
}
.ml-15 {
    margin-left: 15px;
}
.ml-85 {
    margin-left: 85px;
}
.theme-btn {
    border-radius: 60px;
    background: rgb(var(--theme-primary-color));
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    padding: 0 35px;
    transition:
        background 0.4s ease,
        color 0.4s ease;
}
.theme-btn:hover {
    background-color: rgba(var(--theme-primary-color), 0.1);
    color: rgb(var(--theme-primary-color));
}
.cursor-pointer {
    cursor: pointer;
}
ul {
    list-style: none;
}
.theme_mobile_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgb(var(--theme-card-bg));
    overflow: hidden;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}
.theme_mobile_menu .logo {
    position: absolute;
    top: 40px;
    left: 40px;
}
/* TRAINING page css start here   */
.software-engineering-crs-1, .software-engineering-crs-2, .software-engineering-crs-3, .software-engineering-crs-4 {
    background: url(../images/training/training-box-iimg1.png);
    width: 279px;
    height: 132px;
    background-size: cover;
}
.rotate-up-down {
    font-size: 13px;
}
.newtrainingCard .card-body {
    padding: 14px;
    padding-top: 0;
    position: relative;
    min-height: 217px
}
.newtrainingSideTabs .nav-link.active {
    background:#3254f0;
    color: #fff;
    border-color: #0061af;
    box-shadow: 0 6px 18px #0b94e340;
}
.newtrainingCard {
    border: 1px solid #E3E8EF;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s ease,box-shadow .2s ease;
}
.newtrainingSideTabs .nav-link.active::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 26px;
    background: #3254f0;
    clip-path: polygon(0 0,100% 50%,0 100%);
    border-radius: 2px;
}
.newtrainingSideTabs .nav-link {
    border: 1px solid #e3e8ef;
    border-radius: 12px;
    padding: 12px 10px;
    margin-bottom: 14px;
    color: #23313f;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-weight: 600;
    position: relative;
}
.tprogram-icon {
    height: 43px;
    width: 43px;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}
.form-apply .theme_contact-form {
    margin: 0 auto;
}
.tprogram-icon i{
    font-size: 17px;
}
.newCourseSubTabs .nav-link {
    flex: 1 1 0%;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 12px 0;
    color: #66768A;
    font-weight: 500;
    position: relative;
}
.newCourseSubTabs {
    position: relative;
    border-bottom: 1px solid #0061af;
    display: flex;
    margin-bottom: 20px;
}
.newCourseSubTabs .nav-link.active {
    color: #3254f0;
    border-bottom: 3px solid #3254f0;
}
.newtrainingCard .enroll {
    margin-top: 10px;
    background: #0458ee;
    border: 0;
    color: #fff;
    font-weight: 400;
    border-radius: 999px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: inset 0 -6px 0 rgb(0 0 0 / 25%);
    position: absolute;
    bottom: 15px;
    left: 14px;
}
.newtrainingCard .kicker {
    font-size: .9rem;
    color: #6b7a89;
}
.newtrainingCard h6 {
    font-weight: 600;
    margin: 6px 0 14px;
    color: #0061af;
}
.newtrainingCard .meta i {
    color: #0061af;
}
.newtrainingCard .meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    color: #445467;
}
.newCourseCardMain {
    padding: 5px;
    margin-top: 0;
}
/* ===== Training Box Section ===== */

.it-training-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e3e8ef;
    transition: 0.3s ease;
}

.it-training-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 97, 175, 0.08);
}

.it-training-title {
    font-size: 22px;
    font-weight: 700;
    color: #0061af;
    margin-bottom: 15px;
}

.it-training-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.it-training-info {
    margin-top: 15px;
    font-size: 15px;
    color: #333;
}

.it-training-duration {
    display: flex;
    gap: 10px;
}
.it-duration-btn {
    background: #e6f2fb;
    color: #165fb3;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
}

.it-duration-btn:hover {
    background: #004e8c;
}

.it-training-apply {
    display: inline-block;
    background: #366df0;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.it-training-apply:hover {
    background: #0e8e5b;
    color: #fff;
}
/* ===== Attractive IT Training Card ===== */

.it-pro-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    position: relative;
}

.it-pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 97, 175, 0.15);
}

/* Header */
.it-pro-header {
    background: linear-gradient(135deg, #0061af, #00b4db);
    padding: 25px;
    color: #fff;
    text-align: center;
    position: relative;
}

.it-pro-header i {
    font-size: 40px;
    margin-bottom: 10px;
}

.it-pro-header h4 {
    font-weight: 700;
    margin: 0;
}

/* Badge */
.it-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff3c3c;
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    transform: rotate(45deg);
}

/* Body */
.it-pro-body {
    padding: 25px;
}

.it-pro-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Features */
.it-pro-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.it-pro-features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.it-pro-features i {
    color: #0061af;
    margin-right: 6px;
}

/* Info */
.it-pro-info {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Duration */
.it-pro-duration {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.it-pro-duration span {
    background: #e6f2fb;
    color: #0061af;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Button */
.it-pro-btn {
    display: block;
   justify-content: center;
    text-decoration: none;
}
/* ===== Why Choose Section ===== */

.why-choose-area {
    background: linear-gradient(135deg, #f5f9ff, #eaf3ff);
}

.why-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
}

.why-main-title span {
    color: #2e58ee;
}

.why-main-subtitle {
    font-size: 16px;
    color: #667085;
    margin-top: 10px;
}

.why-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 97, 175, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 97, 175, 0.15);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background: #0061af;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.why-card:hover .why-icon-box {
    background: #0b94e3;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.why-card p {
    font-size: 14px;
    color: #667085;
    margin: 0;
}
/* ================= Careers & Updates Section Start ================= */

.section-tag {
    background: #0061af;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.section-title {
    font-weight: 700;
    color: #0061af;
}

.section-subtitle {
    color: #66768a;
    max-width: 600px;
    margin: 0 auto;
}

.career-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #e3e8ef;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 97, 175, 0.15);
}

.career-icon {
    font-size: 40px;
    color: #0061af;
    margin-bottom: 15px;
}

.career-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #23313f;
}

.career-card p {
    font-size: 14px;
    color: #66768a;
    margin-bottom: 20px;
}

.career-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2e58ee;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid #2e58ee;
}

.career-btn:hover {
    background: #ffffff;
    color: #2e58ee;
   
}

/* ================= Careers & Updates Section End ================= */

/* Responsive */

/* ================= Why Choose Us Section end================= */

/* TRAINING page css end here   */
@media (max-width: 767px) {
    .why-main-title {
        font-size: 26px;
    }
    .why-title {
        font-size: 26px;
    }
    .it-pro-header {
        padding: 20px;
    }
    .theme_mobile_menu .logo {
        left: 25px;
    }
    .it-training-box {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .theme_mobile_menu .logo {
        left: 15px;
    }
}
.theme_mobile_menu .close-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 4;
    font-size: 25px;
    color: rgba(var(--theme-primary-color), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .theme_mobile_menu .close-menu {
        top: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .theme_mobile_menu .close-menu {
        right: 15px;
        font-size: 18px;
    }
}
.theme_mobile_menu .close-menu,
.theme_mobile_menu .logo {
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.4s;
}
.theme_mobile_menu .menu-navbar {
    color: #fff;
    height: 100vh;
    padding-top: 140px;
    overflow: auto;
    padding-bottom: 50px;
}
.theme_mobile_menu .menu-navbar::-webkit-scrollbar {
    width: 5px;
}
.theme_mobile_menu .menu-navbar::-webkit-scrollbar-track {
    background: #111;
}
.theme_mobile_menu .menu-navbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}
.theme_mobile_menu .menu-navbar .main-menu {
    position: relative;
    z-index: 2;
}
.theme_mobile_menu .menu-navbar .main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.theme_mobile_menu .menu-navbar .main-menu > li {
    transition: all 0.5s;
}
.theme_mobile_menu .menu-navbar .main-menu > li:last-of-type .link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.theme_mobile_menu .menu-navbar .main-menu > li .link {
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 20px 30px;
    border-top: 1px solid rgba(var(--theme-primary-color), 0.2);
    width: 100%;
    position: relative;
    display: block;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.7s;
    letter-spacing: -0.5px;
}
@media (max-width: 1399px) {
    .theme_mobile_menu .menu-navbar .main-menu > li .link {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .theme_mobile_menu .menu-navbar .main-menu > li .link {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .theme_mobile_menu .menu-navbar .main-menu > li .link {
        font-size: 30px;
    }
}
@media (max-width: 480px) {
    .theme_mobile_menu .menu-navbar .main-menu > li .link {
        font-size: 20px;
    }
}
.theme_mobile_menu .menu-navbar .main-menu > li .link i {
    position: absolute;
    width: 100px;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--theme-primary-color), 0.07);
    cursor: pointer;
}
@media (max-width: 767px) {
    .theme_mobile_menu .menu-navbar .main-menu > li .link i {
        width: 90px;
    }
}
@media (max-width: 480px) {
    .theme_mobile_menu .menu-navbar .main-menu > li .link i {
        width: 70px;
    }
}
.theme_mobile_menu .menu-navbar .main-menu > li .link i::after,
.theme_mobile_menu .menu-navbar .main-menu > li .link i::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\e3d4";
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    font-family: Phosphor !important;
    font-feature-settings: "liga";
    -webkit-font-variant-ligatures: discretionary-ligatures;
    font-variant-ligatures: discretionary-ligatures;
    -webkit-font-smoothing: antialiased;
    color: rgb(var(--theme-primary-color));
}
.theme_mobile_menu .menu-navbar .main-menu > li .link i::after {
    content: "\e32a";
}
.theme_mobile_menu .menu-navbar .main-menu > li .link.dopen i:before {
    opacity: 0;
}
.theme_mobile_menu .menu-navbar .main-menu > li .link .fill-text {
    position: relative;
    color: rgba(var(--theme-text-black), 0.4);
}
.theme_mobile_menu .menu-navbar .main-menu > li .link .fill-text:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(var(--theme-text-black));
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.75s cubic-bezier(0.63, 0.03, 0.21, 1);
}
.theme_mobile_menu .menu-navbar .main-menu > li.hoverd .link .fill-text:after {
    width: 0;
}
.theme_mobile_menu .menu-navbar .main-menu .sub-menu {
    display: none;
    padding: 0;
    border-top: 1px solid rgba(var(--theme-primary-color), 0.2);
}
.theme_mobile_menu .menu-navbar .main-menu .sub-menu li {
    padding: 0;
    margin: 0;
}
.theme_mobile_menu .menu-navbar .main-menu .sub-menu li:last-child a {
    border-bottom: 0;
}
.theme_mobile_menu .menu-navbar .main-menu .sub-menu li a {
    padding: 20px 20px 20px 40px;
    opacity: 0.6;
    transition: all 0.4s;
    display: block;
    font-size: 29px;
    font-weight: 500;
    padding-left: 50px;
    text-transform: capitalize;
    letter-spacing: normal;
    border-color: rgba(var(--theme-primary-color), 0.2);
    border-bottom: 1px solid rgba(var(--theme-primary-color), 0.2);
    background: rgba(255, 255, 255, 0.009);
    color: rgb(var(--theme-text-gery));
}
@media (max-width: 991px) {
    .theme_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        padding-left: 40px;
    }
}
@media (max-width: 767px) {
    .theme_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        padding-left: 30px;
        font-size: 25px;
    }
}
@media (max-width: 575px) {
    .theme_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        font-size: 20px;
        padding-left: 25px;
        padding-top: 18px;
        padding-bottom: 21px;
    }
}
@media (max-width: 480px) {
    .theme_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        font-size: 16px;
        padding-left: 20px;
        padding-top: 13px;
        padding-bottom: 13px;
    }
}
.theme_mobile_menu .menu-navbar .main-menu .sub-menu li a:hover {
    opacity: 1;
}
.theme_mobile_menu .menu-text {
    position: relative;
    z-index: 1;
    height: 100%;
}
.theme_mobile_menu .menu-text:after {
    content: "";
    width: 1px;
    height: 0;
    background: rgba(var(--theme-primary-color), 0.2);
    position: absolute;
    right: -24px;
    bottom: -75vh;
    transition: all 1s ease;
}
.theme_mobile_menu .menu-text .text {
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s;
}
.theme_mobile_menu .menu-text .text h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10vw;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.08;
    margin: 0;
    color: rgba(var(--theme-primary-color));
}
.theme_mobile_menu .cont-info {
    padding-top: 140px;
    padding-left: 15px;
    position: relative;
    z-index: 3;
}
.theme_mobile_menu .cont-info:after {
    content: "";
    width: 300%;
    height: 200vh;
    position: absolute;
    left: -24px;
    top: -75vh;
    background: rgba(var(--theme-primary-color), 0.2);
    z-index: -1;
}
.theme_mobile_menu .cont-info .sub-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(var(--theme-primary-color));
}
.theme_mobile_menu .cont-info .item {
    transform: translateY(50px);
    transition: all 0.4s;
    opacity: 0;
}
.theme_mobile_menu .cont-info .item h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: rgb(var(--theme-text-gery));
}
.theme_mobile_menu .cont-info .item h5:hover a {
    color: rgb(var(--theme-text-black));
}
.theme_mobile_menu .cont-info .item ul.social {
    list-style: none;
}
.theme_mobile_menu .cont-info .item ul.social li a {
    font-size: 16px;
    color: rgb(var(--theme-text-gery));
    font-weight: 400;
}
.theme_mobile_menu .cont-info .item ul.social li a:hover {
    color: var(--clr-theme-primary);
}
.theme_mobile_menu.open .close-menu,
.theme_mobile_menu.open .logo {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}
.theme_mobile_menu.open .menu-navbar .main-menu > li .link {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}
.theme_mobile_menu.open .cont-info .item {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.4s;
}
.theme_mobile_menu.open .menu-text .text {
    opacity: 1;
    transition-delay: 1s;
}
.theme_mobile_menu.open .menu-text:after {
    height: 200vh;
    transition-delay: 0.7s;
}
@media screen and (max-width: 991px) {
    .navbar .search-form,
    .theme_mobile_menu .cont-info,
    .theme_mobile_menu .menu-text {
        display: none;
    }
    .theme_mobile_menu .menu-navbar {
        height: calc(100vh - 40px);
    }
}
.theme_header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 18px 24px;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}
.theme_header-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    opacity: 1;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        background 0.4s ease;
}
.theme_header-area.is-leaving {
    transform: translateY(0);
    opacity: 1;
    background: 0 0;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        background 0.4s ease;
}
.theme_header-left {
    display: flex;
    align-items: center;
    gap: 120px;
}
@media (max-width: 1199px) {
    .theme_header-left {
        gap: 50px;
    }
}
.theme_header-logo {
    max-width: 150px;
    flex-shrink: 0;
}
.theme_header-logo img {
    min-width: 200px;
}
.theme_mobile_menu img {
    width: 70%;
}
@media (max-width: 1199px) {
    .theme_header-logo {
        max-width: 140px;
    }
}
@media (max-width: 991px) {
    .theme_header-menu {
        display: none;
    }
}
.theme_header-menu nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}
@media (max-width: 1199px) {
    .theme_header-menu nav ul {
        gap: 25px;
    }
}
.theme_header-menu nav ul .menu-has-child {
    position: relative;
    z-index: 99;
    text-align: start;
}
.theme_header-menu nav ul li a {
    color: var(--clr-body-text);
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    height: 44px;
    line-height: 44px;
}
.theme_header-menu nav ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
    display: block;
}
.theme_header-menu nav ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}
.theme_header-menu nav ul li .submenu li a {
    padding: 12px 25px;
    color: rgb(var(--theme-text-black));
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    height: auto;
    line-height: 20px;
}
.theme_header-menu nav ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}
.theme_header-menu nav ul li .submenu li:hover > a {
    background-color: rgba(var(--theme-primary-color), 0.2);
    color: rgba(var(--theme-primary-color));
}
.theme_header-menu nav ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}
.theme_header-menu nav ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
}
.theme_header-menu nav ul li:hover > a {
    color: rgb(var(--theme-primary-color));
}
.theme_header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.theme_header-btn {
    border-radius: 60px;
    background: rgb(var(--theme-primary-color));
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 30px;
    height: 56px;
    transition:
        background 0.4s ease,
        color 0.4s ease;
}
@media (max-width: 575px) {
    .theme_header-btn {
        display: none;
    }
}
.theme_header-btn svg {
    width: 12px;
    height: 15px;
}
.theme_header-btn:hover {
    background-color: rgba(var(--theme-primary-color), 0.2);
    color: rgb(var(--theme-primary-color));
}
.theme_header_icon {
    color: rgb(var(--theme-text-black));
    font-size: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_header_icon:hover {
    color: #fff;
}
.theme_hero-single {
    padding-top: 200px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}
.theme_hero-circle {
    position: absolute;
    left: 50%;
    top: 115px;
    transform: translateX(-50%);
    width: max-content;
    height: auto;
    z-index: -1;
}
.theme_hero-content {
    text-align: center;
    margin-bottom: 20px;
}
.theme_hero-content-title {
    color: rgb(var(--theme-text-black));
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 19px;
}
#typing-text {
    display: block;
    height: 100px;
    position: relative;
}
#typing-text::after {
    content: "";
    bottom: -10%;
    display: inline-flex;
    animation: blink 1s infinite;
    font-weight: 100;
    height: 100%;
    width: 1px;
    background-color: rgb(var(--theme-text-gery));
    margin-left: 10px;
    position: absolute;
}
@keyframes blink {
    0%,
    100%,
    50% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@media (max-width: 1199px) {
    .theme_hero-content-title {
        font-size: 90px;
    }
    #typing-text {
        height: 90px;
    }
}
@media (max-width: 991px) {
    .theme_hero-content-title {
        font-size: 80px;
    }
    #typing-text {
        height: 80px;
    }
}
@media (max-width: 767px) {
    .theme_hero-content-title {
        font-size: 60px;
    }
    #typing-text {
        height: 60px;
    }
}
@media (max-width: 480px) {
    .theme_hero-content-title {
        font-size: 50px;
    }
    #typing-text {
        height: 50px;
    }
}
.theme_hero-content p {
    color: rgba(var(--theme-text-gery), 70%);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 42px;
}
@media (max-width: 991px) {
    .theme_hero-content p br {
        display: none;
    }
}
@media (max-width: 480px) {
    .theme_hero-content p {
        font-size: 16px;
    }
}
.theme_hero-img {
    text-align: center;
}
.theme_hero-img svg {
    width: 100%;
}
@media (max-width: 576px) {
    .theme_hero-img {
        display: none;
    }
}
.theme_hero-single::before {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    content: "";
    filter: blur(600px);
    background: rgba(var(--theme-primary-color), 0.5);
    width: 500px;
    height: 500px;
    z-index: -1;
}
@keyframes floatY2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
@keyframes floatY6 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
@keyframes floatY8 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
#animated-man {
    transform-origin: center bottom;
    animation: floatY2 4s ease-in-out infinite alternate;
}
#animated-girl {
    transform-origin: center bottom;
    animation: floatY8 4s ease-in-out infinite alternate;
}
#Group_55 {
    transform-origin: center bottom;
    animation: floatY6 4s ease-in-out infinite alternate;
}
#Group_110,
#Group_171 {
    transform-origin: center bottom;
    animation: floatY2 3s ease-in-out infinite;
}
#gwl-float {
    transform-origin: center;
    animation: floatY6 4s ease-in-out infinite;
}
@keyframes handWaveSmall {
    0%,
    100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(0.1deg);
    }
    50% {
        transform: rotate(-0.1deg);
    }
    75% {
        transform: rotate(0.1deg);
    }
}
@keyframes handWaveLarge {
    0% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(7deg);
    }
    100% {
        transform: rotate(0);
    }
}
@keyframes swing {
    0%,
    100% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(0.2deg);
    }
}
@keyframes menhead {
    0% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(7deg);
    }
    100% {
        transform: rotate(0);
    }
}
#Vector_59,
#Vector_60 {
    transform-origin: 195px 197px;
    animation: handWaveLarge 2s ease-in-out infinite alternate;
}
#phone-hand {
    transform-origin: 50% 80%;
    animation: handWaveSmall 2s ease-in-out infinite alternate;
}
.arm {
    transform-origin: top center;
    animation: swing 0.8s infinite linear;
}
#men-head {
    transform-origin: 825px 170px;
    animation: menhead 2s ease-in-out infinite alternate;
}
@keyframes bounceY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(2px);
    }
}
.man-working {
    transform-origin: center bottom;
    animation: bounceY 1.5s infinite linear;
}
#Vector_61,
#Vector_62 {
    animation: bounceY 2.6s ease-in-out infinite;
}
@keyframes glow {
    0%,
    100% {
        fill: #272c66;
    }
    50% {
        fill: #0558ee;
    }
}
@keyframes blink {
    0%,
    100% {
        fill: #ff606c;
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
@keyframes glowFlow {
    0% {
        stop-color: #0558ee;
    }
    25% {
        stop-color: #1a6eff;
    }
    50% {
        stop-color: #337aff;
    }
    75% {
        stop-color: #1a6eff;
    }
    100% {
        stop-color: #0558ee;
    }
}
@keyframes flicker {
    0%,
    100%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56% {
        opacity: 1;
    }
    20%,
    22%,
    24%,
    55% {
        opacity: 0.7;
    }
}
#Vector_141,
#Vector_335,
#Vector_342 {
    animation: glow 2s infinite alternate;
}
#Vector_337,
#Vector_338,
#Vector_339,
#Vector_340,
#Vector_341 {
    animation: glow 1.5s infinite alternate;
}
#Vector_344 {
    animation: blink 1s infinite;
}
.blue-electric-text path {
    fill: url(#animatedGradient);
    animation:
        glowFlow 4.5s linear infinite,
        flicker 2.2s infinite;
}
@keyframes screenGlow {
    0%,
    100% {
        fill: #d3e9ff;
    }
    50% {
        fill: #9cdbff;
    }
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.screen-light {
    animation: screenGlow 1.5s infinite alternate;
}
#Group_11 {
    transform-origin: center bottom;
    animation: floatY2 3s ease-in-out infinite alternate;
}
#Group_31 {
    animation: blink 1s infinite alternate;
}
#Group_3 {
    transform-origin: center bottom;
    animation: float 3s ease-in-out infinite alternate;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}
#Vector_21,
#Vector_217,
#Vector_22,
#Vector_23,
#Vector_24,
#Vector_25,
#Vector_250,
#Vector_27 {
    animation: screenGlow 1.5s infinite alternate;
}
#Vector_26,
#Vector_28 {
    animation: blink 1s infinite alternate;
}
#Group_7,
#Vector_35,
#Vector_50,
#Vector_51,
#Vector_53,
#Vector_608,
#Vector_610,
#Vector_618,
#Vector_619 {
    transform-origin: top center;
    animation: handSway 2s ease-in-out infinite alternate;
}
@keyframes handSway {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-0.5px) rotate(0.3deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}
@keyframes hand-typing {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(2px);
    }
}
@keyframes screen-blink {
    0%,
    100% {
        fill-opacity: 1;
    }
    50% {
        fill-opacity: 0.6;
    }
}
#Vector_508 {
    animation: hand-typing 0.6s infinite;
    transform-origin: center center;
}
#Vector_506 {
    animation: screen-blink 1s infinite;
}
#Group_157 path,
#Group_158 path,
#Group_159 path,
#Group_160 path,
#Group_172 path {
    transform-origin: center bottom;
    animation:
        waveFloat 4s ease-in-out infinite alternate,
        elasticPop 5s ease-in-out infinite alternate,
        tiltSkew 6s ease-in-out infinite alternate;
}
@keyframes waveFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(-2px);
    }
}
@keyframes elasticPop {
    0%,
    100% {
        transform: scale(1) translateY(0);
    }
    25% {
        transform: scale(1.02) translateY(-1px);
    }
    50% {
        transform: scale(0.98) translateY(-2px);
    }
    75% {
        transform: scale(1.01) translateY(-1px);
    }
}
@keyframes tiltSkew {
    0%,
    100% {
        transform: rotate(0) skewX(0);
    }
    25% {
        transform: rotate(0.5deg) skewX(0.2deg);
    }
    50% {
        transform: rotate(-0.5deg) skewX(-0.2deg);
    }
    75% {
        transform: rotate(0.3deg) skewX(0.1deg);
    }
}
#Group_157 path:nth-child(1),
#Group_158 path:nth-child(1),
#Group_159 path:nth-child(1),
#Group_160 path:nth-child(1),
#Group_172 path:nth-child(1) {
    animation-delay: 0s, 0s, 0s, 0s, 0s;
}
#Group_157 path:nth-child(2),
#Group_158 path:nth-child(2),
#Group_159 path:nth-child(2),
#Group_160 path:nth-child(2),
#Group_172 path:nth-child(2) {
    animation-delay: 0.1s, 0.2s, 0.15s, 50ms, 0.1s;
}
#Group_157 path:nth-child(3),
#Group_158 path:nth-child(3),
#Group_159 path:nth-child(3),
#Group_160 path:nth-child(3),
#Group_172 path:nth-child(3) {
    animation-delay: 0.2s, 0.4s, 0.3s, 0.1s, 0.2s;
}
#Vector_103,
#Vector_104,
#Vector_105,
#Vector_106,
#Vector_111,
#Vector_112,
#Vector_113,
#Vector_114,
#Vector_492,
#Vector_493,
#Vector_494,
#Vector_495 {
    transform-origin: left center;
    animation: lineFlow 4s ease-in-out infinite alternate;
}
@keyframes lineFlow {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}
.move-line {
    animation: slideLeft 20s linear infinite;
}
@keyframes slideLeft {
    0% {
        transform: translateX(100px);
    }
    50% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100px);
    }
}
.theme_brand-area,
.theme_service-area {
    position: relative;
    z-index: 1;
}
.theme_service-item {
    background: rgba(var(--theme-card-bg));
    padding: 37px 30px 32px;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: relative;
    z-index: 99999 !important;
    border: 1px solid transparent;
    height: 100%;
    min-height: 100%;
}
@media (max-width: 575px) {
    .theme_service-item {
        padding: 37px 25px 32px;
    }
}
.theme_service-item-icon {
    margin-bottom: 36px;
}
.theme_service-item h2 {
    padding-bottom: 10px;
}
.theme_service-item-icon i {
    color: rgb(var(--theme-primary-color));
    font-size: 40px;
    line-height: 40px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_service-item-content h2 {
    color: rgb(var(--theme-text-black));
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 17px;
}
.theme_service-item-content h2:hover a {
    color: var(--clr-theme-primary);
}
.theme_service-item-content p {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(var(--theme-text-gery), 70%);
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}
.theme_service-item-content-btn {
    margin-top: 30px;
    color: rgb(var(--theme-text-gery));
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}
.theme_service-item:hover {
    box-sizing: border-box;
    border-color: rgb(var(--theme-primary-color));
    border-radius: 8px;
    box-shadow: 0 0 50px 0 rgba(138, 241, 53, 0.3);
}
.theme_service-item:hover .theme_service-item-content-btn {
    color: rgb(var(--theme-primary-color));
}
.theme_section-subtitle {
    display: inline-flex;
    align-items: center;
    color: rgb(var(--theme-primary-color));
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    letter-spacing: 2.5px;
}
.theme_section-subtitle::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--clr-theme-primary);
    border-radius: 50%;
}
.theme_section-title {
    color: rgb(var(--theme-text-black));
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}
@media (max-width: 1199px) {
    .theme_section-title {
        font-size: 38px;
    }
}
@media (max-width: 991px) {
    .theme_section-title {
        font-size: 36px;
    }
    .theme_section-title br {
        display: none;
    }
}
@media (max-width: 575px) {
    .theme_section-title {
        font-size: 34px;
    }
}
@media (max-width: 480px) {
    .theme_section-title {
        font-size: 28px;
    }
}
.theme_section-text {
    color: rgb(var(--theme-text-gery));
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.theme_inner_section .theme_section-title span {
    color: rgb(var(--theme-primary-color));
}
.why-us-inner {
    padding: 10px 20px;
    background: #f2f2f2;
    color: rgb(var(--theme-text-gery));
}
.brand-filter-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: stretch;
}
.brand-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.brand-tab {
    padding: 12px 16px;
    text-align: left;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
}
.brand-tab.active {
    background: rgb(var(--theme-primary-color));
    color: #fff;
}
.brand-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px;
    align-content: start;
}
.brand-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(var(--theme-primary-color), 0.2);
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    height: max-content;
}
.brand-item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}
.brand-item.hide {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    display: none;
}
.brand-item.show {
    animation: brandFadeUp 0.45s ease-out both;
}
.brand-item p {
    font-size: 16px;
    font-weight: 400;
    padding-top: 22px;
    color: rgb(var(--theme-text-gery));
}
@keyframes brandFadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@media (max-width: 991px) {
    .brand-filter-layout {
        display: flex;
        flex-direction: column;
    }
    .brand-tabs {
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
}
.theme_project-active {
    position: relative;
}
.theme_project-item {
    padding: 20px 20px 20px;
    background: rgb(var(--theme-primary-color));
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 900px;
    height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 1 !important;
}
.theme_project-top {
    margin-bottom: 85px;
}
@media (max-width: 991px) {
    .theme_project-item {
        height: max-content;
    }
    .theme_project-top {
        margin-bottom: 40px;
    }
}
.theme_project-item:nth-child(4n + 1) {
    background: #7b2ff7;
}
.theme_project-item:nth-child(4n + 2) {
    background: #f107a3;
}
.theme_project-item:nth-child(4n + 3) {
    background: #36454f;
}
.theme_project-item:nth-child(4n + 4) {
    background: #f57036;
}
.theme_project-item-img {
    overflow: hidden;
    width: 100%;
}
.theme_project-item-img a {
    width: 100%;
}
.theme_project-item-img img {
    width: 100%;
    border-radius: 8px;
}
.theme_project-item-content {
    width: 100%;
    padding: 10px 0;
}
.theme_project-item-content-icon svg {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: #fff;
    width: 20px;
}
.theme_project-item-content-title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 6px;
}
.theme_project-item-content-title i {
    font-size: 28px;
    line-height: 28px;
    color: #ffff;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 20px;
}
.theme_project-item-content-title h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 0;
}
.theme_project-item-content span {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.6px;
    gap: 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_project-item-content span del {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    padding-left: 13px;
}
.theme_project-item-badge {
    font-size: 14px;
    color: #f2f2f2;
    background-color: rgb(255 255 255 / 20%);
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-flex;
}
.theme_project-area {
    position: relative;
    height: 100vh !important;
}
.stack-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 376px);
    perspective: 1200px;
}
.theme_choose_2-content {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
    gap: 115px;
    position: relative;
    z-index: 1;
}
.theme_choose_2-img img {
    border-radius: 20px;
}
@media (max-width: 1199px) {
    .theme_choose_2-content {
        gap: 65px;
    }
}
@media (max-width: 480px) {
    .theme_choose_2-content {
        flex-wrap: wrap;
    }
}
.theme_choose_2-content::before {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 1px;
    height: 86px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #0558ee, #011946);
}
@media (max-width: 1199px) {
    .theme_choose_2-content::before {
        right: 52%;
    }
}
@media (max-width: 480px) {
    .theme_choose_2-content::before {
        width: 100%;
        height: 1px;
        right: 0;
        transform: translateY(-50%);
    }
}
.theme_choose_2-content-item h2 {
    color: rgb(var(--theme-text-black));
    font-size: 44px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -1px;
    margin-bottom: 5px;
}
.theme_choose_2-content-item p {
    color: rgb(var(--theme-text-gery));
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}
.theme_inner_service-item-2,
.theme_service-item:hover {
    box-shadow: none;
}
.theme_service_2-item {
    border: 1px solid rgba(var(--theme-text-gery), 0.2);
    border-radius: 8px;
    padding: 24px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: rgba(var(--theme-primary-color), 0.1);
    min-height: 288px;
}
.theme_service_2-item-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    overflow: hidden;
}
.theme_service_2-item-icon img {
    width: 60px;
    height: 60px;
}
.theme_service_2-item-title {
    color: rgb(var(--theme-text-black));
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
}
.theme_service_2-item p {
    color: rgb(var(--theme-text-gery));
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_service_2-item-btn {
    background-color: rgb(var(--theme-primary-color));
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 34px;
    line-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}
.theme_service_2-item-btn:hover {
    opacity: 1;
    color: #fff;
}
@media (max-width: 480px) {
    .theme_testimonial-area .pl-30.pr-30 {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.theme_testimonial-bg {
    background-color: #184239;
}
.theme_testimonial-item {
    background: rgb(var(--theme-primary-color));
    padding: 35px 30px 35px;
    border-radius: 8px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
}
.theme_testimonial-item:hover {
    border-color: var(--clr-theme-primary);
}
.theme_testimonial-item-rating {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
}
.theme_testimonial-item-rating li {
    color: #ffd600;
}
.theme_testimonial-item p {
    color: rgba(255, 255, 255, 0.7);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 28px;
}
.theme_testimonial-admin {
    display: flex;
    align-items: center;
    gap: 12px;
}
.theme_testimonial-admin img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
}
.theme_testimonial-admin-info h4,
.theme_testimonial-admin-info .theme_testimonial-admin-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 5px;
}
.theme_testimonial-admin-info span {
    color: rgba(255, 255, 255, 0.5);
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}
.theme_testimonial-wrap {
    max-width: 1760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(var(--theme-card-bg));
    border-radius: 16px;
    position: relative;
    z-index: 1;
}
.theme_testimonial-wrap::before {
    position: absolute;
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgb(var(--theme-card-bg)), rgba(var(--theme-card-bg), 0) 100%);
    height: 450px;
    width: 285px;
    z-index: 9;
    bottom: 30px;
}
@media (max-width: 575px) {
    .theme_testimonial-wrap::before {
        display: none;
    }
}
.theme_testimonial-wrap::after {
    position: absolute;
    right: 0;
    content: "";
    background: linear-gradient(90deg, rgb(var(--theme-card-bg)), rgba(var(--theme-card-bg), 0) 100%);
    height: 450px;
    width: 285px;
    z-index: 9;
    bottom: 30px;
    transform: rotate(180deg);
}
@media (max-width: 575px) {
    .theme_testimonial-wrap::after {
        display: none;
    }
}
@media (max-width: 575px) {
    .theme_testimonial-wrap .theme_testimonial-active {
        margin-left: 15px;
        margin-right: 15px;
    }
}
.theme_blog-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgb(var(--theme-card-bg));
    padding: 30px 30px 30px;
    padding-right: 80px;
    border-radius: 8px;
}
@media (max-width: 991px) {
    .theme_blog-item {
        flex-wrap: wrap;
        padding-right: 30px;
    }
}
.theme_blog-item-img {
    flex-shrink: 0;
    max-width: 380px;
    width: 100%;
}
@media (max-width: 991px) {
    .theme_blog-item-img {
        max-width: 100%;
    }
}
.theme_blog-item-img img {
    width: 100%;
    border-radius: 8px;
}
.theme_blog-item-content {
    position: relative;
    z-index: 1;
}
.theme_blog-item-content-tag {
    background-color: rgba(var(--theme-primary-color), 0.15);
    height: 25px;
    display: inline-flex;
    padding: 0 14px;
    border-radius: 48px;
    color: rgb(var(--theme-primary-color));
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_blog-item-content-title {
    color: rgb(var(--theme-text-black));
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .theme_blog-item-content-title {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    .theme_blog-item-content-title {
        font-size: 24px;
    }
}
.theme_blog-item-content-title:hover a {
    color: rgb(var(--theme-primary-color));
}
.theme_blog-item-content-admin {
    display: flex;
    align-items: center;
    gap: 12px;
}
.theme_blog-item-content-admin img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}
.theme_blog-item-content-admin span {
    color: rgb(var(--theme-text-gery));
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}
.theme_blog-item-content-admin span a {
    color: rgba(var(--theme-text-gery), 0.7);
}
.theme_blog-item-content-admin span:hover a {
    color: var(--clr-theme-primary);
}
.theme_blog-item-content-btn {
    position: absolute;
    right: 0;
    top: 0;
}
.theme_blog-item-content-btn a svg {
    color: rgb(var(--theme-text-gery));
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_blog-item:hover .theme_blog-item-content-tag {
    background-color: rgb(var(--theme-primary-color));
    color: #fff;
}
.theme_blog-item:hover .theme_blog-item-content-btn a svg {
    color: rgba(var(--theme-primary-color));
}
.theme_contact-form {
    background: rgb(var(--theme-card-bg));
    padding: 50px 30px 50px;
    border-radius: 8px;
    max-width: 682px;
    width: 100%;
    border: 2px solid #0f2923;
}
/* apply form css start  */
.training_enquiry_area {
    background: #edf7ff;
}
.training_enquiry_img img {
    border-radius: 12px;
}

.training_form_box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 97, 175, 0.08);
}

.training_form_box h4 {
    font-weight: 600;
    color: #0061af;
}

.training_form_box input,
.training_form_box select,
.training_form_box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.training_form_box input:focus,
.training_form_box select:focus,
.training_form_box textarea:focus {
    border-color: #0061af;
    box-shadow: 0 0 0 2px rgba(0, 97, 175, 0.1);
}

.training_form_box textarea {
    min-height: 120px;
    resize: none;
}

.theme_contact-form-btn {
    background: #0061af;
    border: none;
    padding: 12px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.theme_contact-form-btn:hover {
    background: #004a86;
}



@media (max-width: 991px) {
    .theme_contact-form {
        max-width: 100%;
    }
}
.theme_contact-form-title {
    color: #1d1d1d;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
}
.theme_contact-form input,
.theme_contact-form textarea {
    height: 64px;
    width: 100%;
    background: 0 0;
    box-sizing: border-box;
    border: 2px solid #0f2923;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 52px;
    font-weight: 400;
    padding: 0 20px;
}
.theme_contact-form input::-webkit-input-placeholder,
.theme_contact-form textarea::-webkit-input-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}
.theme_contact-form input:-moz-placeholder,
.theme_contact-form textarea:-moz-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}
.theme_contact-form input::-moz-placeholder,
.theme_contact-form textarea::-moz-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}
.theme_contact-form input:-ms-input-placeholder,
.theme_contact-form textarea:-ms-input-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}
.theme_contact-form textarea {
    height: 200px;
}
.theme_contact-form-btn {
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-transform: capitalize;
    height: 56px;
    display: inline-flex;
    align-items: center;
    padding: 0 60px;
    border: 0;
}
.theme_contact-form-btn:hover {
    background-color: rgb(var(--theme-primary-color));
    color: #fff;
}
.theme_contact-wrap {
    display: flex;
    align-items: center;
    gap: 90px;
}
@media (max-width: 1399px) {
    .theme_contact-wrap {
        gap: 70px;
    }
}
@media (max-width: 1199px) {
    .theme_contact-wrap {
        gap: 40px;
    }
}
@media (max-width: 991px) {
    .theme_contact-wrap {
        flex-wrap: wrap;
        gap: 40px;
    }
}
.theme_contact-content {
    max-width: 540px;
    width: 100%;
}
@media (max-width: 991px) {
    .theme_contact-content {
        max-width: 100%;
    }
}
.theme_contact-call {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 480px) {
    .theme_contact-call {
        gap: 20px;
    }
}
.theme_contact-call-icon {
    width: 70px;
    height: 70px;
    background: rgb(var(--theme-card-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}
.theme_contact-call-icon svg {
    width: 48px;
    color: rgb(var(--theme-text-black));
}
.theme_contact-call-info span {
    color: rgba(var(--theme-primary-color));
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 13px;
}
.theme_contact-call-info a {
    color: rgb(var(--theme-text-black));
    font-size: 32px;
    font-weight: 600;
    line-height: 24px;
    display: block;
}
@media (max-width: 480px) {
    .theme_contact-call-info a {
        font-size: 22px;
    }
}
.theme_contact-call-info a:hover {
    color: rgb(var(--theme-text-black));
}
.nice-select.has-nice-select {
    height: 64px;
    width: 100%;
    background: 0 0;
    box-sizing: border-box;
    border: 2px solid #0f2923;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #4f4f4f;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 60px;
    font-weight: 400;
    padding: 0 20px;
}
.nice-select.has-nice-select::after {
    border-bottom: 2px solid #4f4f4f;
    border-right: 2px solid #4f4f4f;
    content: "";
    display: block;
    height: 10px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 21px;
    top: 50%;
    transform-origin: 50% 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 9.5px;
}
.nice-select.has-nice-select ul {
    width: 100%;
    border-radius: 8px;
    border: none;
    background-color: rgb(var(--theme-primary-color));
    margin-top: 4px;
}
.nice-select.has-nice-select ul li {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    min-height: 50px;
}
.nice-select.has-nice-select ul li.selected {
    font-weight: 400;
}
.nice-select.has-nice-select ul li:hover {
    background-color: var(--clr-common-black);
}
.nice-select.has-nice-select .nice-select .option.selected.focus,
.nice-select.has-nice-select .option.focus {
    background-color: var(--clr-common-black);
}
.footer-top {
    padding: 30px 0;
    border-bottom: 1px solid rgba(var(--theme-primary-color), 0.2);
    padding-top: 50px;
}
.footer-body {
    padding: 30px 0;
    border-bottom: 1px solid rgba(var(--theme-primary-color), 0.2);
}
.footer-border-left {
    border-right: 1px solid rgba(var(--theme-primary-color), 0.2);
}
.footer-newsletter {
    padding: 30px 0;
    border-bottom: 1px solid rgba(var(--theme-primary-color), 0.2);
}
.footer-newsletter-title i {
    font-size: 44px;
    color: rgb(var(--theme-primary-color));
}
.footer-border-bottom {
    border-bottom: 1px solid rgba(var(--theme-primary-color), 0.2);
    padding-bottom: 10px;
}
.footer-newsletter-title h4 {
    font-size: 32px;
}
.footer-bottom {
    padding: 30px 0;
}
.theme_footer-top {
    background: rgb(var(--theme-card-bg));
}
.theme_footer-widget-title {
    color: rgb(var(--theme-text-black));
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 28px;
}
.theme_footer-widget-text {
    color: rgb(var(--theme-text-gery));
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 17px;
}
.theme_footer-widget form {
    position: relative;
    z-index: 1;
}
.theme_footer-widget form input {
    width: 100%;
    height: 64px;
    background: #fff;
    border: none;
    padding-left: 20px;
    padding-right: 55px;
    border-radius: 32px;
    color: rgb(var(--theme-text-black));
    font-size: 16px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: -0.8px;
    text-align: left;
}
.theme_footer-widget-mail {
    display: flex;
    align-items: center;
    gap: 10px;
}
.theme_footer-widget-mail a {
    color: rgb(var(--theme-text-black));
    font-size: 30px;
    font-weight: 500;
    line-height: 28px;
    text-transform: lowercase;
    display: block;
}
.theme_footer-widget-mail a:hover {
    color: rgb(var(--theme-primary-color));
}
.theme_footer-widget ul {
    list-style: none;
}
.theme_footer-widget ul li {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.theme_footer-widget ul li:last-child {
    margin-bottom: 0;
}
.theme_footer-widget ul li a {
    color: rgb(var(--theme-text-gery));
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    position: relative;
    z-index: 1;
    padding-left: 16px;
}
.theme_footer-widget ul li a::before {
    position: absolute;
    left: 0;
    top: 38%;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: rgb(var(--theme-text-gery));
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_footer-widget ul li a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    content: "";
    width: 10%;
    height: 1px;
    background: rgb(var(--theme-primary-color));
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_footer-widget ul li a:hover {
    color: rgb(var(--theme-primary-color));
}
.theme_footer-widget ul li a:hover::after {
    opacity: 1;
    visibility: visible;
    width: calc(100% + 10px);
}
.theme_footer-widget ul li span {
    background: rgb(var(--theme-primary-color));
    height: 22px;
    padding: 0 7px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    color: rgb(var(--theme-card-bg));
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}
.theme_footer-widget-post:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 17px;
    padding-bottom: 16px;
}
.theme_footer-widget-post span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 6px;
}
.theme_footer-widget-post h5 {
    color: #fff;
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
}
.theme_footer-widget-post h5:hover a {
    color: var(--clr-theme-primary);
}
.theme_footer-widget-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.theme_footer-widget-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 30px;
    line-height: 30px;
    color: rgb(var(--theme-primary-color));
}
.theme_footer-widget-social a:hover {
    background: var(--clr-theme-primary);
    border-color: transparent;
    color: var(--clr-common-black);
}
@media (max-width: 1199px) {
    .theme_footer-widget.mr-85 {
        margin-right: 0;
    }
    .theme_footer-widget.ml-45 {
        margin-left: 0;
    }
    .theme_footer-widget.ml-25 {
        margin-left: 15px;
    }
    .theme_footer-widget.ml-15 {
        margin-left: 0;
    }
    .theme_footer-widget.ml-85 {
        margin-left: 0;
    }
}
@media (max-width: 991px) {
    .theme_footer-widget.ml-25 {
        margin-left: 0;
    }
    .footer-border-left {
        border-right: 0;
    }
    .footer-body {
        padding: 30px 16px;
    }
}
.theme_footer-bottom {
    background: rgb(var(--theme-card-bg));
    padding: 30px 0 30px;
    border-top: 1px solid rgba(var(--theme-primary-color), 0.2);
}
@media (max-width: 767px) {
    .theme_footer-bottom {
        padding: 22px 0;
    }
}
.theme_footer-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 767px) {
    .theme_footer-bottom-wrap {
        justify-content: center;
    }
}
.theme_footer-logo {
    max-width: 148px;
}
.theme_footer-logo img {
    width: 100%;
}
@media (max-width: 767px) {
    .theme_footer-logo {
        display: none;
    }
}
.theme_footer-copyright p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgb(var(--theme-text-gery));
}
.theme_footer-copyright p a {
    color: rgb(var(--theme-primary-color));
}
@media (max-width: 480px) {
    .theme_footer-copyright p {
        text-align: center;
    }
}
@media (max-width: 991px) {
    .theme_footer-social {
        display: none;
    }
}
.theme_footer-social ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.theme_footer-social ul li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
}
.theme_footer-social ul li a:hover {
    background: var(--clr-theme-primary);
    border-color: transparent;
    color: var(--clr-common-black);
}
.theme_footer-widget-logo img {
    width: 70%;
}
.theme_breadcrumb-area {
    padding-top: 115px;
    position: relative;
    z-index: 1;
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 767px) {
    .theme_breadcrumb-area {
        padding-top: 97px;
    }
}
.theme_breadcrumb-area::before {
    position: absolute;
    left: -169px;
    top: -109px;
    content: "";
    width: 329px;
    height: 329px;
    border-radius: 50%;
    filter: blur(400px);
    background: rgba(var(--theme-primary-color), 0.5);
    z-index: -1;
}
.theme_breadcrumb-area::after {
    position: absolute;
    right: -164px;
    top: -112px;
    content: "";
    width: 329px;
    height: 329px;
    border-radius: 50%;
    filter: blur(400px);
    background: rgba(var(--theme-primary-color), 0.5);
    z-index: -1;
}
.theme_breadcrumb-wrap {
    max-width: 90%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        rgba(var(--theme-primary-color), 0.2),
        rgba(var(--theme-primary-color), 0.2) 100%
    );
    padding: 70px 0;
    position: relative;
    z-index: 1;
}
.theme_breadcrumb-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: none;
}
.theme_breadcrumb-content-title {
    color: rgb(var(--theme-text-black));
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
@media (max-width: 575px) {
    .theme_breadcrumb-content-title {
        font-size: 42px;
    }
}
@media (max-width: 480px) {
    .theme_breadcrumb-content-title {
        font-size: 38px;
    }
}
.theme_breadcrumb-content-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.theme_breadcrumb-content-list a {
    color: rgb(var(--theme-text-gery));
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.5px;
    display: block;
}
.theme_breadcrumb-content-list a:hover {
    color: var(--clr-theme-primary);
}
.theme_breadcrumb-content-list span {
    color: rgb(var(--theme-primary-color));
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}
.theme_breadcrumb-content-list span::before {
    display: inline-block;
    font-family: Phosphor !important;
    content: "\e138";
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}
.theme_cta-area {
    position: relative;
    z-index: 1;
    margin-bottom: -30px;
}
.theme_cta-wrapper {
    position: relative;
    z-index: 1;
    background: rgb(var(--theme-primary-color));
    border-radius: 16px;
    padding: 70px 50px 70px;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .theme_cta-wrapper {
        padding: 70px 40px 70px;
    }
}
@media (max-width: 767px) {
    .theme_cta-wrapper {
        padding: 45px 25px 45px;
        flex-wrap: wrap;
    }
}
.theme_cta-shape-1 {
    position: absolute;
    left: 47%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}
.theme_cta-shape-1 svg {
    color: rgba(15, 41, 35, 0.1);
}
.theme_cta-shape-2 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.theme_cta-shape-2 svg {
    color: rgba(15, 41, 35, 0.1);
}
.theme_cta-title {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 0;
}
@media (max-width: 1199px) {
    .theme_cta-title {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .theme_cta-title {
        font-size: 32px;
    }
    .theme_cta-title br {
        display: none;
    }
}
@media (max-width: 480px) {
    .theme_cta-title {
        font-size: 28px;
    }
}
.theme_cta-action {
    max-width: 470px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 1199px) {
    .theme_cta-action {
        max-width: 350px;
    }
}
@media (max-width: 991px) {
    .theme_cta-action {
        max-width: 260px;
    }
}
.theme_cta-action i {
    font-size: 85px;
    line-height: 85px;
    color: #fff;
    flex-shrink: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 10px;
}
@media (max-width: 991px) {
    .theme_cta-action img {
        font-size: 70px;
        line-height: 70px;
    }
}
.theme_cta-action-info span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}
.theme_cta-action-info a {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    display: block;
}
@media (max-width: 991px) {
    .theme_cta-action-info a {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .theme_cta-action-info a {
        font-size: 20px;
    }
}
.theme_cta-action-info a:hover {
    color: #fff;
}
.theme_cta_bg::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 135.6px;
    width: 100%;
    background-color: #0f0f0f;
}
.theme_service-item-title {
    color: rgb(var(--theme-text-black));
    padding-bottom: 8px;
}
.theme_service-item p {
    color: rgb(var(--theme-text-gery));
}
.theme_inner-item-icon {
    width: 80px;
    height: 80px;
    background-color: rgb(var(--theme-primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_inner-item-icon i {
    font-size: 35px;
    line-height: 35px;
    color: #fff;
    transition: all 0.3s linear 0s;
}
.theme_service-btn {
    text-align: center;
}
.bg-theme-cta {
    background-color: rgb(var(--theme-primary-color), 0.04);
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9 !important;
}
.carousel-card {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
#drag-proxy {
    position: fixed;
    inset: 0;
    cursor: grab;
    z-index: 9999;
    background: 0 0;
}
.ls-curved-carousel.fadeout {
    --fadeout: linear-gradient(90deg, transparent, white 20%, white 80%, transparent 100%);
}
.ls-curved-carousel {
    --fadeout: none;
    -webkit-mask-image: var(--fadeout);
    mask-image: var(--fadeout);
}
body .ls-curved-carousel {
    position: relative;
    width: 100%;
    height: var(--viewport-height);
    transform-style: preserve-3d;
    user-select: none;
    overflow: visible;
    z-index: 1;
    margin-block: var(--block-offset);
    margin-bottom: 0;
}
body .ls-curved-carousel__stage {
    perspective: var(--perspective);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
body .ls-curved-carousel__ring {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
body .ls-curved-carousel__slide {
    position: absolute;
    transform-style: preserve-3d;
    overflow: hidden;
}
.ls-curved-carousel__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
@media (max-width: 767px) {
    body .ls-curved-carousel {
        height: var(--viewport-height-m);
        margin-block: var(--block-offset-m);
    }
    body .ls-curved-carousel__stage {
        perspective: var(--perspective-m);
    }
}
.theme_faq-img img {
    border-radius: 17px;
}
.theme_faq-content .accordion-item {
    overflow: hidden;
    background: 0 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.theme_faq-content .accordion-button {
    position: relative;
    cursor: pointer;
    box-shadow: none;
    background: 0 0;
    border: 1px solid transparent;
    border-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 8px 8px 0 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 23px 20px 24px 20px;
}
@media (max-width: 767px) {
    .theme_faq-content .accordion-button {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .theme_faq-content .accordion-button {
        font-size: 20px;
    }
}
.theme_faq-content .accordion-button span {
    color: var(--clr-theme-primary);
}
.theme_faq-content .accordion-button::after {
    display: none;
}
.theme_faq-content .accordion-button::before {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
}
@media (max-width: 575px) {
    .theme_faq-content .accordion-button::before {
        right: 20px;
    }
}
.theme_faq-content .accordion-button:not(.collapsed) {
    background-color: var(--clr-common-lightBlack);
    padding-bottom: 17px;
    border: 1px solid var(--clr-theme-primary);
    border-bottom: 0;
}
.theme_faq-content .accordion-button:not(.collapsed)::before {
    color: var(--clr-theme-primary);
    content: "\f106";
}
.theme_faq-content .accordion-body {
    padding: 0 40px 28px 62px;
    background: var(--clr-common-lightBlack);
    border: 1px solid var(--clr-theme-primary);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_faq-content .accordion-body p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}
@media (max-width: 1399px) {
    .theme_faq-wrapper.ml-50 {
        margin-left: 0;
    }
}
@media (max-width: 1399px) {
    .theme_faq-wrapper.mr-30 {
        margin-right: 0;
    }
}
.theme_inner_faq-img img {
    border-radius: 17px;
}
.theme_inner_faq-content .accordion-item {
    overflow: hidden;
    background: 0 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.theme_inner_faq-content .accordion-button {
    position: relative;
    cursor: pointer;
    box-shadow: none;
    background: rgb(var(--theme-card-bg));
    border: none;
    border-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 8px 8px 0 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 30px 30px 30px;
}
@media (max-width: 767px) {
    .theme_inner_faq-content .accordion-button {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .theme_inner_faq-content .accordion-button {
        font-size: 20px;
        padding: 20px 20px 20px;
    }
}
@media (max-width: 480px) {
    .theme_inner_faq-content .accordion-button {
        font-size: 18px;
    }
}
.theme_inner_faq-content .accordion-button span {
    background-color: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.theme_inner_faq-content .accordion-button span i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-common-black);
    font-size: 14px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    text-align: center;
    width: 100%;
}
.theme_inner_faq-content .accordion-button::after {
    display: none;
}
.theme_inner_faq-content .accordion-button::before {
    display: none;
}
.theme_inner_faq-content .accordion-button:not(.collapsed) {
    padding-bottom: 25px;
    border: 1px solid var(--clr-theme-primary);
    border-bottom: 0;
}
.theme_inner_faq-content .accordion-button:not(.collapsed) span i {
    transform: translateY(-50%) rotate(45deg);
}
.theme_inner_faq-content .accordion-body {
    padding: 0 30px 25px 76px;
    background: rgba(var(--theme-card-bg), 0.2);
    border: none;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 575px) {
    .theme_inner_faq-content .accordion-body {
        padding-left: 65px;
    }
}
@media (max-width: 480px) {
    .theme_inner_faq-content .accordion-body {
        padding-left: 65px;
    }
}
.theme_inner_faq-content .accordion-body p {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(var(--theme-text-gery));
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 19px;
    margin-bottom: 0;
}
@media (max-width: 1399px) {
    .theme_inner_faq-wrap.ml-50 {
        margin-left: 0;
    }
}
.theme_inner_faq-content .accordion-button span {
    background-color: rgba(var(--theme-primary-color));
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.theme_inner_faq-content .accordion-button span i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ffff;
    font-size: 18px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    text-align: center;
    width: 100%;
}
.theme_service_details_2-list ul li {
    color: rgba(var(--theme-text-gery));
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.theme_service_details_2-list ul li:last-child {
    margin-bottom: 0;
}
.theme_service_details_2-list ul li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(var(--theme-primary-color));
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-_project-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.inner-_project-main .theme_project-item {
    position: unset;
    transform: unset;
    width: 100%;
    max-width: 100%;
    height: 100%;
    flex: 0 0 30%;
}
@media (max-width: 991px) {
    .inner-_project-main .theme_project-item {
        flex: 0 0 47%;
    }
}
@media (max-width: 576px) {
    .inner-_project-main .theme_project-item {
        flex: 0 0 100%;
    }
}
.inner_project-area {
    height: max-content !important;
}
.theme_inner-pagination ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 8px;
    align-items: center;
}
.theme_inner-pagination ul li a {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--theme-primary-color), 0.5);
    border-radius: 50%;
    color: rgb(var(--theme-text-black));
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.theme_inner-pagination ul li a:hover {
    background: rgba(var(--theme-primary-color));
    color: #fff;
}
.theme_contact-call {
    display: flex;
    align-items: center;
    gap: 12px;
}
.theme_contact-call-info span {
    color: #a3a3a3;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}
.theme_contact_top-item {
    background-color: rgb(var(--theme-card-bg));
    border-radius: 8px;
    text-align: center;
    padding: 50px 40px 45px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_contact_top-item-icon {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    width: 70px;
    height: 70px;
    background: rgba(var(--theme-primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
}
.theme_contact_top-item-icon svg {
    color: #fff;
    width: 30px;
}
.theme_contact_top-item-info h4 {
    color: rgb(var(--theme-text-black));
    font-family: Outfit, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.theme_contact_top-item-info a,
.theme_contact_top-item-info p {
    display: block;
    color: rgba(var(--theme-text-gery));
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 1199px) {
    .theme_contact_top-item-info a br,
    .theme_contact_top-item-info p br {
        display: none;
    }
}
.theme_contact_top-item:hover {
    background-color: rgba(var(--theme-primary-color), 0.2);
}
.theme_blog_details-content-social {
    display: flex;
    align-items: center;
    gap: 8px;
}
.theme_blog_details-content-social a {
    border: 1px solid rgba(var(--theme-primary-color), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    padding: 8px;
    color: rgba(var(--theme-primary-color));
}
.theme_blog_details-content-social a:hover {
    background: rgb(var(--theme-primary-color));
    border-color: var(--clr-theme-primary);
    color: #fff;
}
.tab-heading {
    font-size: 18px;
    font-weight: 400;
    color: rgb(var(--theme-text-black));
}
.radio-tabs-v2 {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.radio-tab-v2 {
    padding: 10px 24px;
    border-radius: 20px;
    border: none;
    background-color: rgba(var(--theme-text-gery), 0.1);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0) scale(1);
    color: rgba(var(--theme-text-gery));
    overflow: hidden;
}
.radio-tab-v2:hover {
    background-color: rgba(var(--theme-text-gery), 0.2);
}
.radio-tab-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 88, 238, 0.06);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.radio-tab-v2.active::before {
    transform: scaleX(1);
}
.radio-tab-v2.active::before {
    transform: scaleX(1);
    background: rgba(var(--theme-primary-color));
}
.tab-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(var(--theme-text-gery), 0.8);
}
.radio-tab-v2.active {
    border-color: rgba(var(--theme-primary-color));
    background: rgba(5, 88, 238, 0.06);
    animation: tabPressDown 360ms cubic-bezier(0.4, 0, 0.2, 1);
}
.radio-tab-v2.active .tab-label {
    color: #fff;
}
.radio-tab-v2:hover {
    border-color: rgba(var(--theme-primary-color));
}
@keyframes tabPressDown {
    0% {
        transform: translateY(0) scale(1);
    }
    35% {
        transform: translateY(3px) scale(0.96);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}
.hire-input-wrap {
    position: relative;
}
.hire-input {
    border: none;
    border-bottom: 3px solid rgba(var(--theme-text-gery), 0.2);
    border-radius: 0;
    font-size: 30px;
    background: 0 0;
}
.hire-input:focus {
    outline: 0;
    box-shadow: none !important;
    border-color: rgba(var(--theme-text-gery), 0.2);
}
.hire-input-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: rgba(var(--theme-text-gery), 1);
}
.hire-input-wrap:focus-within::after {
    animation: underlineProgress 1s linear forwards;
}
@keyframes underlineProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.hire_left-heading {
    font-size: 26px;
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: rgb(var(--theme-text-black));
}
.theme-mail {
    font-size: 24px;
    font-weight: 400;
    color: rgba(var(--theme-primary-color));
}
.hire_left-heading-sm {
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    letter-spacing: 3px;
    font-weight: 400;
    color: rgb(var(--theme-text-black));
}
.online-hireing-items img {
    max-width: 140px;
    min-width: 140px;
}
.online-hireing {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 26px;
}
.theme_hire-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hireing-modals-items {
    display: flex;
    flex-direction: column;
    background-color: rgb(var(--theme-card-bg));
    padding: 20px 24px;
    border-radius: 10px;
    flex: 0 0 30%;
    align-items: center;
    width: 100%;
    pointer-events: none;
    cursor: pointer;
    height: max-content;
    min-height: 448px;
}
.hireing-modal-main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.hireing-modals-items img {
    width: 70%;
}
.hireing-modals-items h4 {
    color: rgb(var(--theme-text-black));
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 16px;
    padding-top: 22px;
}
.hireing-modals-items p {
    color: rgb(var(--theme-text-gery));
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.fixed-icon {
    position: fixed;
    top: 50%;
    left: -116px;
    z-index: 99999;
    padding: 10px;
    transform: rotate(-90deg) translateX(0);
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}
.book-metting {
    background: rgba(var(--theme-primary-color));
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    animation: ziggle 2.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(var(--theme-primary-color));
    transition:
        background 0.4s ease,
        color 0.4s ease;
}
.book-metting i {
    font-size: 22px;
    line-height: 22px;
}
.book-metting:hover {
    background: #fff;
    color: rgba(var(--theme-primary-color));
}
.book-metting::after,
.whatapp-chat::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2.5s ease-in-out infinite;
}
.whatapp-chat {
    background: var(--whatapp-brand-color);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 22px;
    border-radius: 26px;
    color: #fff;
    animation: ziggle 2.5s ease-in-out infinite;
    overflow: hidden;
    border: 1px solid var(--whatapp-brand-color);
    transition:
        background 0.4s ease,
        color 0.4s ease;
}
.whatapp-chat i {
    transform: rotate(90deg);
}
.whatapp-chat:hover {
    background: #fff;
    color: var(--whatapp-brand-color);
}
@keyframes shine {
    0% {
        left: -120%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
@keyframes ziggle {
    0% {
        transform: translateX(0);
    }
    6% {
        transform: translateX(-2px);
    }
    12% {
        transform: translateX(2px);
    }
    18% {
        transform: translateX(-1px);
    }
    24% {
        transform: translateX(1px);
    }
    30% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}
.scroll-to_top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    cursor: pointer;
    pointer-events: auto;
    background: rgb(var(--theme-primary-color));
    width: 46px;
    height: 46px;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
#mobile-menu li.active > a {
    color: rgba(var(--theme-primary-color));
    font-weight: 600;
}
.theme_about-img img {
    width: 80%;
    border-radius: 30px;
}
.theme_about-img {
    text-align: center;
}
.theme_service_details-img img {
    border-radius: 40px;
}
