* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: #0f172a;
    background: #ffffff;
    line-height: 1.5; 
    position: relative;
}


.container,
.th-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}


.th-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #0b5bd3;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 8px 20px rgba(11, 91, 211, .25);
}

.th-btn:hover {
    background: #094db3;
    transform: translateY(-1px);
}

.th-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(11, 91, 211, .25);
}


.th-header.header-layout2.header-layout6 {
    position: fixed;
    width: 100%;
    z-index: 50;
    top: 0;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 60;
}

.menu-area {
    position: relative;
    background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
    color: #ffffff;
    transition: box-shadow .2s ease, background .2s ease;
}

.menu-area.is-scrolled {
    box-shadow: 0 8px 24px rgba(2, 6, 23, .35);
    background: #0f172a;
}


.logo-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 120px at 120px 0, rgba(59, 130, 246, .18), transparent 60%);
    pointer-events: none;
}


.header-logo img,
.mobile-logo img {
    display: block;
    height: 42px;
    width: auto;
}


.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.col-auto {
    display: flex;
    align-items: center;
}


.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}

.main-menu a {
    position: relative;
    display: inline-block;
    padding: 18px 0;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .2px;
    transition: color .15s ease;
}

.main-menu a:hover,
.main-menu a:focus {
    color: #ffffff;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 2px;
    background: #3b82f6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.main-menu a:hover::after,
.main-menu a:focus::after {
    transform: scaleX(1);
}


.th-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, .25);
    background: rgba(15, 23, 42, .25);
    color: #ffffff;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .1s ease;
    display: none;
}

.th-menu-toggle:hover {
    background: rgba(15, 23, 42, .4);
    border-color: rgba(148, 163, 184, .4);
}

.th-menu-toggle:active {
    transform: translateY(1px);
}


.th-menu-wrapper {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 80;
}

.th-menu-wrapper.active {
    display: block;
}

.th-menu-area {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 420px);
    background: #ffffff;
    color: #0f172a;
    box-shadow: -16px 0 40px rgba(2, 6, 23, .2);
    transform: translateX(100%);
    transition: transform .25s ease;
    padding: 20px 20px 28px;
}

.th-menu-wrapper.active .th-menu-area {
    transform: translateX(0);
}


.th-menu-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .55);
    backdrop-filter: blur(2px);
}


.th-menu-area .th-menu-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #0f172a;
    border-color: transparent;
}


.mobile-logo {
    margin-top: 8px;
    margin-bottom: 18px;
}

.mobile-logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}


.th-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.th-mobile-menu li {
    border-bottom: 1px solid #e5e7eb;
}

.th-mobile-menu a {
    display: block;
    padding: 14px 6px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: background .15s ease, color .15s ease;
}

.th-mobile-menu a:hover {
    background: #f1f5f9;
    color: #0b5bd3;
}


.menu-area .row {
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.header-button {
    display: flex;
    align-items: center;
}



@media (min-width: 1200px) {
    .header-button {
        margin-left: 20px;
    }
}


@media (min-width: 992px) {
    .main-menu {
        display: inline-block;
    }
   
}


@media (max-width: 991.98px) {
    .main-menu {
        display: none !important;
    }

    .header-button {
        display: none;
    }
     .th-menu-toggle {
        display: flex;
    }
}


a:focus-visible,
.th-menu-toggle:focus-visible,
.th-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 10px;
}

.th-hero-wrapper {
    position: relative;
    overflow: hidden;
    background: #0b1220;
    color: #ffffff;
}


.th-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.th-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, .85) 0%, rgba(2, 6, 23, .55) 50%, rgba(2, 6, 23, .85) 100%);
    z-index: 1;
}

.th-hero-bg>img.hero-6-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.05) brightness(.9);
    opacity: .65;
}


.hero-inner.hero-style6 {
    position: relative;
    z-index: 2;
    padding: 84px 0 64px;
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.gy-4>[class*="col-"] {
    margin-top: 1rem;
}

.col-xl-7,
.col-xl-5,
.col-lg-7,
.col-lg-5 {
    padding: 0 12px;
}


@media (min-width: 992px) {
    .col-lg-7 {
        width: 58.333%;
    }

    .col-lg-5 {
        width: 41.666%;
    }
}

@media (min-width: 1200px) {
    .col-xl-7 {
        width: 58.333%;
    }

    .col-xl-5 {
        width: 41.666%;
    }
}


.hero-content {
    text-align: left;
}

.hero-title {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: .2px;
    font-weight: 800;
}

.box-text {
    margin: 0 0 24px;
    max-width: 58ch;
    opacity: .9;
}

.text-white {
    color: #ffffff;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}


.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-group.justify-content-center {
    justify-content: flex-start;
}


.th-btn.style3 {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(229, 231, 235, .35);
    box-shadow: none;
}

.th-btn.style3:hover {
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    border-color: rgba(229, 231, 235, .6);
}


.hero-img {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 340px;
}

.hero-img .img-main picture,
.hero-img .img-main img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(2, 6, 23, .5);
    transform: translateZ(0);
}


.hero-shape {
    position: absolute;
    right: -24px;
    bottom: -24px;
    z-index: -1;
    opacity: .7;
    filter: drop-shadow(0 10px 30px rgba(2, 6, 23, .6));
}

.hero-shape img {
    max-width: 280px;
    height: auto;
}


.hero-big-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    pointer-events: none;
    opacity: .08;
    mix-blend-mode: lighten;
    white-space: nowrap;
}

.th-big-title {
    margin: 0;
    font-size: clamp(48px, 10vw, 140px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
    color: transparent;
}


.hero-content,
.hero-img .img-main,
.hero-big-text {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
}

.th-hero-wrapper.is-inview .hero-content {
    transition-delay: .05s;
    opacity: 1;
    transform: none;
}

.th-hero-wrapper.is-inview .hero-img .img-main {
    transition-delay: .15s;
    opacity: 1;
    transform: none;
}

.th-hero-wrapper.is-inview .hero-big-text {
    transition-delay: .25s;
    opacity: .08;
    transform: translate(-50%, -30%);
}


@media (max-width: 991.98px) {
    .hero-inner.hero-style6 {
        padding: 72px 0 48px;
    }

    .hero-content {
        text-align: center;
    }

    .btn-group.justify-content-center {
        justify-content: center;
    }

    .box-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img {
        margin-top: 8px;
    }

    .hero-shape {
        right: -10px;
        bottom: -10px;
    }
}

@media (max-width: 575.98px) {
    .hero-inner.hero-style6 {
        padding: 64px 0 40px;
    }

    .hero-shape img {
        max-width: 200px;
    }

    .th-big-title {
        font-size: clamp(40px, 14vw, 96px);
    }
}


.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.about-1-wrapper {
    position: relative;
    overflow: hidden;
}

.space {
    padding: 72px 0;
}

@media (min-width: 992px) {
    .space {
        padding: 96px 0;
    }
}


.bg-smoke2 {
    background:
        radial-gradient(60% 50% at 20% 0%, rgba(59, 130, 246, .08), transparent 60%),
        linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    color: #fff;
}


.shape-mockup {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.shape-mockup img {
    display: block;
    max-width: 100%;
    width: 330px;
    height: auto;
    opacity: .8;
    filter: drop-shadow(0 12px 28px rgba(2, 6, 23, .5));
}

.jump {
    animation: shapeJump 3.6s ease-in-out infinite;
}

.jump-reverse {
    animation: shapeJump 3.6s ease-in-out infinite reverse;
}

@keyframes shapeJump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.gx-60>[class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
}

.gy-40>[class*="col-"] {
    margin-top: 40px;
}

.col-xl-7,
.col-xl-5 {
    width: 100%;
}

@media (min-width: 1200px) {
    .col-xl-7 {
        width: 58.333%;
    }

    .col-xl-5 {
        width: 41.666%;
    }
}

.mb-xl-0 {
    margin-bottom: 0;
}


.img-box1.about-1 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    z-index: 2;
}

.img-box1 .img1,
.img-box1 .img2-top,
.img-box1 .img2-bottom {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(2, 6, 23, .55);
    background: #0f172a;
}

.img-box1 .img1 img,
.img-box1 .img2 img,
.img-box1 .img2-top img,
.img-box1 .img2-bottom img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateZ(0);
}

.img-box1 .img1 {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    align-self: stretch;
}

.img-box1 .img2 {
    grid-column: 2 / span 1;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}


.img-box1 .img1::after,
.img-box1 .img2-top::after,
.img-box1 .img2-bottom::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    pointer-events: none;
}


.tilt-active {
    transition: transform .35s ease, filter .35s ease;
    will-change: transform;
}

.tilt-active:hover {
    filter: saturate(1.05) contrast(1.03);
}


.title-area {
    z-index: 2;
    position: relative;
}

.sub-title {
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #93c5fd;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(147, 197, 253, .25);
    border-radius: 999px;
}

.before-none {
    position: relative;
}

.sec-title {
    margin: 12px 0 10px;
    font-size: clamp(22px, 4vw, 36px);
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    letter-spacing: .2px;
}

.sec-text {
    margin: 0;
    color: #e5e7eb;
    opacity: .92;
    max-width: 60ch;
}


.checklist.style2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist.style2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #e5e7eb;
}

.checklist.style2 i {
    margin-top: 2px;
    color: #22c55e;
    font-size: 18px;
    filter: drop-shadow(0 2px 6px rgba(34, 197, 94, .35));
}


.mb-25 {
    margin-bottom: 25px;
}

.mb-40 {
    margin-bottom: 40px;
}


.th-btn.style4 {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 185, 129, .28);
    border: none;
}

.th-btn.style4:hover {
    filter: brightness(.96);
    transform: translateY(-1px);
}

.th-btn.style4:active {
    transform: translateY(0);
}


@media (max-width: 991.98px) {
    .img-box1.about-1 {
        grid-template-columns: 1fr;
    }

    .img-box1 .img1 {
        grid-row: auto;
    }

    .img-box1 .img2 {
        grid-column: 1;
    }

    .sec-text {
        max-width: none;
    }
}

.space-bottom {
    padding-bottom: 72px;
}

@media (min-width: 992px) {
    .space-bottom {
        padding: 96px;
    }
}

.overflow-hidden {
    overflow: hidden;
}


.counter-sec1 {
    position: relative;
    z-index: 5;
    padding: 0;
    margin-top: 0 !important;
    background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);

}

.counter-sec1 .container {
    position: relative;
}

.counter-card-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    background: rgba(15, 23, 42, .6);
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 18px;
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 48px rgba(2, 6, 23, .45);
}

.counter-card {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 12px;
    min-width: 0;
}

.counter-card .box-icon img {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(59, 130, 246, .25));
}

.counter-card .media-body {
    min-width: 0;
}

.box-number {
    margin: 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(22px, 3.6vw, 34px);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.counter-number {
    display: inline-block;
    min-width: 2ch;
}

.plus-simple {
    color: #60a5fa;
    font-weight: 800;
}

.box-text {
    margin: 6px 0 0;
    color: #cbd5e1;
    font-weight: 500;
}

.divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(148, 163, 184, .25), transparent);
}

@media (max-width: 991.98px) {
    .counter-card-wrap {
        flex-direction: column;
        gap: 10px;
        padding: 14px;
    }

    .divider {
        display: none;
    }

    .counter-card {
        padding: 12px 6px;
    }
}


.th-service-2.bg-smoke2 {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(60% 50% at 80% 0%, rgba(99, 102, 241, .08), transparent 60%),
        linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
    color: #fff;
}

.title-area .sub-title {}

.th-service-2 .sec-title {
    color: #fff;
}

.slider-area {
    position: relative;
}

.slider-arrow.default {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .25);
    background: rgba(15, 23, 42, .35);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .1s ease;
}

.slider-arrow.default:hover {
    background: rgba(15, 23, 42, .5);
    border-color: rgba(148, 163, 184, .45);
}

.slider-arrow.default:active {
    transform: translateY(1px);
}

.icon-box {
    display: flex;
    gap: 10px;
}

.slider-area {
    width: 100%;
    min-width: 0;
}

.th-slider {
    width: 100%;
    min-width: 0;
    display: block;
}

.service-card.style-2 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 18px;
    padding: 18px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 12px 32px rgba(2, 6, 23, .25);
    transition: transform .2s ease, box-shadow .2s ease;
    min-height: 220px;
}

.service-card.style-2:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(2, 6, 23, .35);
}

.service-card .box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.service-card .box-title {
    margin: 2px 0 6px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: #0b1220;
}

.service-card .box-text {
    color: #334155;
    margin: 0;
}


.th-slider {
    padding: 8px 4px;
}

.th-slider .swiper-slide {
    height: auto;
}

.th-slider .swiper-slide>* {
    min-height: 400px;
}


@supports not (aspect-ratio: 1) {}

.no-swiper .slider-area .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .no-swiper .slider-area .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .no-swiper .slider-area .swiper-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .no-swiper .slider-area .swiper-wrapper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


#process-sec {
    color: #fff;
    background: radial-gradient(60% 50% at 80% 0%, rgba(99, 102, 241, .08), transparent 60%), linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}

.process-3-title-box .sec-title {
    color: #fff;
}

.process-3-title-box .box-text {
    color: #e5e7eb;
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
}

.process-box.style-2 {
    background: rgba(15, 23, 42, .6);
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 16px 36px rgba(2, 6, 23, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.process-box.style-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(2, 6, 23, .45);
}

.process-box .box-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.process-box .box-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.process-box .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(59, 130, 246, .35);
}

.process-box .box-title {
    margin: 6px 0 6px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.process-box .box-text {
    margin: 0;
    color: #cbd5e1;
}


.counter-sec1[data-pos-for][data-sec-pos] {

    margin-top: 0;
}

.swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
}

.swiper-slide {
    flex: 0 0 auto;
}

.choose-area-2 {
    position: relative;
    color: #fff;
    background: radial-gradient(60% 50% at 80% 0%, rgba(99, 102, 241, .08), transparent 60%), linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}

.choose-area-2 .title-area .sub-title {
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .22);
    color: #2563eb;
}

.choose-area-2 .sec-title {
    color: #fff;
}

.after-none {
    position: relative;
}


.choose-2-wrapper {
    margin-top: 22px;
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.col-xl-3,
.col-lg-6,
.col-md-6 {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        width: 25%;
    }
}


.choose-item {
    height: 100%;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(2, 6, 23, .12);
    transition: transform .18s ease, box-shadow .18s ease;

}

.choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, .16);
}


.choose-content {
    position: relative;
    padding: 22px 18px 20px;
    text-align: left;
    margin: 10px;
    min-height: 200px;
}

.choose-content .box-title {
    margin: 14px 0 10px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: #0b1220;
}

.choose-content .box-text {
    margin: 0;
    color: #334155;
}


.choose-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(37, 99, 235, .18);
    box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
    margin: 0 auto;
}

.choose-shape img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}


.mb-25 {
    margin-bottom: 25px;
}

.gy-50>[class*="col-"] {
    margin-top: 50px;
}


@media (max-width: 991.98px) {
    .choose-area-2 .title-area {
        text-align: center;
    }
}


.choose-item {
    opacity: 0;
    transform: translateY(10px);
}

.choose-area-2.is-inview .choose-item {
    opacity: 1;
    transform: none;
    transition: opacity .45s ease, transform .45s ease;
}

.choose-area-2.is-inview .choose-item:nth-child(1) {
    transition-delay: .05s;
}

.choose-area-2.is-inview .choose-item:nth-child(2) {
    transition-delay: .12s;
}

.choose-area-2.is-inview .choose-item:nth-child(3) {
    transition-delay: .19s;
}

.choose-area-2.is-inview .choose-item:nth-child(4) {
    transition-delay: .26s;
}

.space-top {
    padding: 72px 0;
}

@media (min-width: 992px) {
    .space-top {
        padding: 96px 0;
    }
}


.testi-card-area-1 {
    color: #fff;
    background: radial-gradient(60% 50% at 80% 0%, rgba(99, 102, 241, .08), transparent 60%), linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}

.testi-card-area-1 .title-area .sub-title {
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    color: #93c5fd;
}

.testi-card-area-1 .sec-title {
    color: #fff;
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-12 {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

.col-lg-6 {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }
}

.gy-4>[class*="col-"] {
    margin-top: 1rem;
}


.testi-block.inner {
    position: relative;
    border-radius: 18px;
    background: rgba(15, 23, 42, .7);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 16px 40px rgba(2, 6, 23, .45);
    padding: 18px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
}

.testi-block.inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 56px rgba(2, 6, 23, .5);
}


.testi-icon-1-top {
    position: absolute;
    right: 14px;
    top: 14px;
    opacity: .45;
    filter: drop-shadow(0 6px 18px rgba(2, 6, 23, .6));
}

.testi-icon-1-top img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}


.testi-block-top {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.testi-block .box-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .55);
    border: 1px solid rgba(255, 255, 255, .08);
}

.testi-block .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-block .content .box-title {
    margin: 0 0 2px;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
}

.testi-block .content .box-desig {
    margin: 0 0 6px;
    color: #cbd5e1;
    font-size: 14px;
    opacity: .9;
}


.box-review {
    display: inline-flex;
    gap: 4px;
}

.box-review .fa-star {
    color: #fbbf24;
    filter: drop-shadow(0 2px 6px rgba(251, 191, 36, .35));
}


.testi-block .box-text {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.6;
}

.testi-block .box-text::before,
.testi-block .box-text::after {
    content: "“";
    font-size: 28px;
    line-height: 0;
    vertical-align: baseline;
    color: rgba(147, 197, 253, .7);
}

.testi-block .box-text::after {
    content: "”";
}


.testi-card-area-1 .testi-block {
    opacity: 0;
    transform: translateY(10px);
}

.testi-card-area-1.is-inview .testi-block {
    opacity: 1;
    transform: none;
    transition: opacity .45s ease, transform .45s ease;
}

.testi-card-area-1.is-inview .row .col-lg-6:nth-child(1) .testi-block {
    transition-delay: .05s;
}

.testi-card-area-1.is-inview .row .col-lg-6:nth-child(2) .testi-block {
    transition-delay: .12s;
}

.testi-card-area-1.is-inview .row .col-lg-6:nth-child(3) .testi-block {
    transition-delay: .19s;
}

.testi-card-area-1.is-inview .row .col-lg-6:nth-child(4) .testi-block {
    transition-delay: .26s;
}

.testi-card-area-1.is-inview .row .col-lg-6:nth-child(5) .testi-block {
    transition-delay: .33s;
}

.testi-card-area-1.is-inview .row .col-lg-6:nth-child(6) .testi-block {
    transition-delay: .40s;
}


.testi-block.inner.light {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(2, 6, 23, .08);
}

.testi-block.inner.light .box-title {
    color: #0b1220;
}

.testi-block.inner.light .box-text {
    color: #334155;
}

#faq-sec {
    color: #fff;
    background: radial-gradient(60% 50% at 80% 0%, rgba(99, 102, 241, .08), transparent 60%), linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}

#faq-sec .title-area .sub-title {
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    color: #93c5fd;
}

#faq-sec .sec-title {
    color: #fff;
}


.row {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.col-lg-6 {
    width: 100%;
    padding: 0 12px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }
}

.gy-60>[class*="col-"] {
    margin-top: 60px;
}

.gx-60>[class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
}


.accordion {
    display: grid;
    gap: 12px;
}

.accordion-card {
    border-radius: 16px;
    background: rgba(15, 23, 42, .65);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 16px 36px rgba(2, 6, 23, .35);
    overflow: hidden;
}


.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition: background .2s ease;
}

.accordion-button:hover {
    background: rgba(255, 255, 255, .04);
}

#faq-sec .accordion-button::after {
    content: "";
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #93c5fd;
    border-bottom: 2px solid #93c5fd;
    transform: rotate(45deg);
    transition: transform .2s ease, border-color .2s ease, opacity .2s ease;


    background: none !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
}

#faq-sec .accordion-button:hover::after {
    border-color: #bfdbfe;
}

#faq-sec .accordion-button[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.accordion-button[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}


.accordion-collapse {
    overflow: hidden;
}

.accordion-body {
    padding: 0 18px 18px 18px;
}

.faq-text {
    margin: 0;
    color: #e5e7eb;
}


.accordion-collapse.collapse {
    display: block;
    max-height: 0;
    transition: max-height .25s ease;
}

.accordion-collapse.collapse.show {
    max-height: 420px;
}

@media (min-width: 992px) {
    .accordion-collapse.collapse.show {
        max-height: 520px;
    }
}


.faq-img-box2 .img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 18px 48px rgba(2, 6, 23, .5);
}

.faq-img-box2 .img img {
    display: block;
    width: 100%;
    height: auto;
}


#faq-sec .accordion-card,
#faq-sec .faq-img-box2 {
    opacity: 0;
    transform: translateY(10px);
}

#faq-sec.is-inview .accordion-card,
#faq-sec.is-inview .faq-img-box2 {
    opacity: 1;
    transform: none;
    transition: opacity .45s ease, transform .45s ease;
}

#faq-sec.is-inview .accordion-card:nth-child(1) {
    transition-delay: .05s;
}

#faq-sec.is-inview .accordion-card:nth-child(2) {
    transition-delay: .12s;
}

#faq-sec.is-inview .accordion-card:nth-child(3) {
    transition-delay: .19s;
}

#faq-sec.is-inview .accordion-card:nth-child(4) {
    transition-delay: .26s;
}

#contact-form-section {
    color: #fff;
    background: radial-gradient(60% 50% at 80% 0%, rgba(99, 102, 241, .08), transparent 60%), linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-7,
.col-lg-5 {
    width: 100%;
    padding: 0 12px;
}

@media (min-width: 992px) {
    .col-lg-7 {
        width: 58.333%;
    }

    .col-lg-5 {
        width: 41.666%;
    }
}


.contact-form.style-4 {
    position: relative;
    background: rgba(15, 23, 42, .65);
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(2, 6, 23, .45);
    padding: 22px;
    backdrop-filter: blur(6px);
}

@media (min-width: 992px) {
    .contact-form.style-4 {
        padding: 26px;
    }
}

.form-title {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}

.form-subtitle {
    margin: 0 0 10px;
    color: #cbd5e1;
}


.contact-form .row {
    margin: -8px;
}

.contact-form .form-group {
    position: relative;
    padding: 8px;
}

.contact-form .form-group.col-md-6 {
    width: 100%;
}

@media (min-width: 768px) {
    .contact-form .form-group.col-md-6 {
        width: 50%;
    }
}


.contact-form .form-control {
    width: 100%;
    display: block;
    color: #e5e7eb;
    background: rgba(2, 6, 23, .35);
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 12px;
    padding: 12px 42px 12px 12px;
    line-height: 1.4;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form .form-control::placeholder {
    color: #94a3b8;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, .25);
    background: rgba(2, 6, 23, .45);
}


.contact-form select.form-control {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #93c5fd 50%),
        linear-gradient(135deg, #93c5fd 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}


.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}


.contact-form .form-group>i {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #93c5fd;
    pointer-events: none;
    opacity: .95;
}

.contact-form textarea+i {
    top: 18px;
    transform: none;
    opacity: .85;
}


.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 4px;
    border: 1px solid rgba(148, 163, 184, .35);
    background: rgba(2, 6, 23, .35);
    display: inline-block;
    position: relative;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, .25);
    border-color: #60a5fa;
}

.form-check-input:checked {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-color: #2563eb;
}

.form-check-input:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check-label {
    color: #e5e7eb;
    line-height: 1.45;
}

.form-check-label a {
    color: #93c5fd;
    text-decoration: underline;
}

.form-check-label a:hover {
    color: #bfdbfe;
}


.form-btn {
    padding: 8px;
}

.th-btn.style2 {
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(59, 130, 246, .28);
    border: none;
}

.th-btn.style2:hover {
    filter: brightness(.96);
    transform: translateY(-1px);
}

.th-btn.style2:active {
    transform: translateY(0);
}


.form-messages {
    color: #93c5fd;
}


.contact-page-thumb {
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}

.contact-page-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


#contact-form-section .contact-form,
#contact-form-section .contact-page-thumb {
    opacity: 0;
    transform: translateY(10px);
}

#contact-form-section.is-inview .contact-form,
#contact-form-section.is-inview .contact-page-thumb {
    opacity: 1;
    transform: none;
    transition: opacity .45s ease, transform .45s ease;
}

#contact-form-section.is-inview .contact-form {
    transition-delay: .08s;
}

#contact-form-section.is-inview .contact-page-thumb {
    transition-delay: .16s;
}

#blog-sec {
    color: #fff;
    background:
        radial-gradient(60% 50% at 80% 0%, rgba(99, 102, 241, .08), transparent 60%),
        linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}


#blog-sec .title-area .sub-title {
    background: rgba(99, 102, 241, .12);
    border: 1px solid rgba(99, 102, 241, .25);
    color: #a5b4fc;
}

#blog-sec .sec-title {
    color: #fff;
}


.blog-slider5 .th-slider {
    width: 100%;
    display: block;
}

.blog-slider5 .swiper-wrapper {
    display: flex;
}

.blog-slider5 .swiper-slide {
    height: auto;
}


.no-swiper #blog-sec .swiper-wrapper {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width:768px) {
    .no-swiper #blog-sec .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:1200px) {
    .no-swiper #blog-sec .swiper-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


.blog-card.style-4 {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #0f172a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(2, 6, 23, .35);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

.blog-card.style-4:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(2, 6, 23, .45);
}


.blog-card .blog-img {
    position: relative;
    overflow: hidden;
}

.blog-card .blog-img a {
    display: block;
}

.blog-card .blog-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease, filter .5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
    filter: contrast(1.02) saturate(1.02);
}


.blog-card .blog-content {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
}

.blog-card .blog-meta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    text-decoration: none;
    transition: color .15s ease;
}

.blog-card .blog-meta a:hover {
    color: #0b1220;
}

.blog-card .blog-meta i {
    color: #6366f1;
}

.blog-card .box-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.blog-card .box-title a {
    color: #0b1220;
    text-decoration: none;
}

.blog-card .box-title a:hover {
    color: #111827;
}


.blog-card .th-btn {
    align-self: flex-start;
}


#blog-sec .blog-card {
    opacity: 0;
    transform: translateY(10px);
}

#blog-sec.is-inview .blog-card {
    opacity: 1;
    transform: none;
    transition: opacity .45s ease, transform .45s ease;
}

#blog-sec.is-inview .swiper-slide:nth-child(1) .blog-card {
    transition-delay: .05s;
}

#blog-sec.is-inview .swiper-slide:nth-child(2) .blog-card {
    transition-delay: .12s;
}

#blog-sec.is-inview .swiper-slide:nth-child(3) .blog-card {
    transition-delay: .19s;
}

#blog-sec.is-inview .swiper-slide:nth-child(4) .blog-card {
    transition-delay: .26s;
}

.footer-wrapper {
    color: #e5e7eb;
    background: #0b1220;
}


.widget-area.bg-footer-color {
    background:
        radial-gradient(60% 50% at 20% 0%, rgba(59, 130, 246, .10), transparent 60%),
        linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    padding: 56px 0;
    border-top: 1px solid rgba(148, 163, 184, .18);
}

@media (min-width: 992px) {
    .widget-area.bg-footer-color {
        padding: 72px 0;
    }
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4,
.col-xl-4,
.col-xl-auto,
.col-lg {
    padding: 0 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333%;
    }
}

@media (min-width: 1200px) {
    .col-xl-4 {
        width: 33.333%;
    }
}


.footer-border-right {
    position: relative;
}

@media (min-width: 768px) {
    .footer-border-right::after {
        content: "";
        position: absolute;
        top: 0;
        right: -1px;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(148, 163, 184, .22), transparent);
    }
}

.footer-border-right:last-child::after {
    display: none;
}


.footer-widget .widget_title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .2px;
    color: #fff;
}


.widget_nav_menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_nav_menu .menu li+li {
    margin-top: 8px;
}

.widget_nav_menu .menu a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .15s ease, transform .15s ease;
}

.widget_nav_menu .menu a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.widget_nav_menu .menu a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 6px;
}


.th-widget-about {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.about-logo img {
    display: inline-block;
    height: 56px;
    width: auto;
}

.about-text {
    color: #cbd5e1;
    margin: 12px auto 0;
}


.th-widget-contact .info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.info-box_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(147, 197, 253, .22);
    color: #93c5fd;
    flex: 0 0 40px;
}

.footer-info-title {
    margin: 0 0 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.info-box_text {
    margin: 0;
    color: #cbd5e1;
}

.info-box_link {
    color: #bfdbfe;
    text-decoration: underline;
}

.info-box_link:hover {
    color: #fff;
}


.copyright-wrap {
    background: #0f172a;
    border-top: 1px solid rgba(148, 163, 184, .18);
    padding: 16px 0;
}

.copyright-text {
    margin: 0;
    color: #94a3b8;
}

.copyright-text a {
    color: #cbd5e1;
    text-decoration: none;
}

.copyright-text a:hover {
    color: #ffffff;
}


.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.text-xl-center {
    text-align: center;
}

@media (min-width: 1200px) {
    .text-xl-center {
        text-align: center;
    }
}


.widget {
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .widget {
        margin-bottom: 0;
    }
}


.footer-wrapper .widget-area .widget,
.footer-wrapper .copyright-wrap {
    opacity: 0;
    transform: translateY(10px);
}

.footer-wrapper.is-inview .widget-area .widget,
.footer-wrapper.is-inview .copyright-wrap {
    opacity: 1;
    transform: none;
    transition: opacity .45s ease, transform .45s ease;
}

.footer-wrapper.is-inview .widget-area .widget:nth-child(1) {
    transition-delay: .06s;
}

.footer-wrapper.is-inview .widget-area .widget:nth-child(2) {
    transition-delay: .12s;
}

.footer-wrapper.is-inview .widget-area .widget:nth-child(3) {
    transition-delay: .18s;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    padding: 14px;
    background: transparent;
    pointer-events: none;
}

.cookie-content {
    pointer-events: auto;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    background: rgba(15, 23, 42, .9);
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(2, 6, 23, .55);
    padding: 16px;
    color: #e5e7eb;
}

.cookie-text {
    flex: 1 1 520px;
    min-width: 260px;
}

.cookie-text h4 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.cookie-text p {
    margin: 0;
    color: #cbd5e1;
}

.cookie-text a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #bfdbfe;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}


.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.cookie-btn:active {
    transform: translateY(1px);
}

.settings-btn {
    background: rgba(15, 23, 42, .5);
    border-color: rgba(148, 163, 184, .35);
}

.settings-btn:hover {
    background: rgba(15, 23, 42, .65);
    border-color: rgba(148, 163, 184, .5);
}

.accept-btn {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 26px rgba(16, 185, 129, .28);
}

.accept-btn:hover {
    filter: brightness(.96);
}


.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    background: rgba(2, 6, 23, .6);
    backdrop-filter: blur(3px);
    padding: 20px;
}

.cookie-modal-content {
    max-width: 720px;
    margin: 6vh auto;
    background: rgba(15, 23, 42, .96);
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(2, 6, 23, .6);
    color: #e5e7eb;
    overflow: hidden;
}

.cookie-modal-header,
.cookie-modal-footer {
    padding: 14px 16px;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(148, 163, 184, .2);
}

.cookie-modal-header h3 {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.close-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, .35);
    background: rgba(15, 23, 42, .4);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.close-btn:hover {
    background: rgba(15, 23, 42, .6);
}

.cookie-modal-body {
    padding: 16px;
    display: grid;
    gap: 14px;
}

.cookie-modal-body p {
    margin: 0 0 4px;
    color: #cbd5e1;
}

.cookie-category {
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 12px;
    padding: 12px;
    background: rgba(2, 6, 23, .35);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cookie-category h4 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}


.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, .35);
    transition: background .2s ease, box-shadow .2s ease;
}

.cookie-switch .slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    top: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .4);
}

.cookie-switch input:checked+.slider {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.cookie-switch input:checked+.slider::before {
    transform: translateX(22px);
}

.cookie-switch input:disabled+.slider {
    opacity: .6;
}


.cookie-modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid rgba(148, 163, 184, .2);
}

.save-btn {
    background: rgba(15, 23, 42, .5);
    border: 1px solid rgba(148, 163, 184, .35);
}

.save-btn:hover {
    background: rgba(15, 23, 42, .65);
    border-color: rgba(148, 163, 184, .5);
}


.cookie-banner.show .cookie-content {
    animation: cbEnter .25s ease;
}

.cookie-modal.show .cookie-modal-content {
    animation: cmEnter .25s ease;
}

@keyframes cbEnter {
    from {
        transform: translateY(8px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes cmEnter {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}


.cookie-btn:focus-visible,
.close-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}.breadcumb-wrapper{
  position: relative;
  color: #fff;
  padding:120px 0 72px 0;             
  overflow: hidden;
  background-color: #0b1220;   
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px){
  .breadcumb-wrapper{ padding:120px 0 72px 0;}
}


.breadcumb-wrapper::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(2,6,23,var(--bc-ov, .65)); 
  z-index: 0;
}


.breadcumb-wrapper.ov-title::before{
  background:
    linear-gradient(180deg, rgba(2,6,23,.85) 0%, rgba(2,6,23,.55) 45%, rgba(2,6,23,.8) 100%);
}


.breadcumb-content{ position: relative; z-index: 1; }
.breadcumb-title{
  margin: 0 0 8px;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .2px;
  color: #fff;
}


.breadcumb-menu{
  margin: 0; padding: 0; list-style: none;
  display: inline-flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.breadcumb-menu li{
  display: inline-flex; align-items: center; gap: 8px;
  color: #cbd5e1; font-weight: 600;
}
.breadcumb-menu li+li::before{
  content: "/"; opacity: .6;
}
.breadcumb-menu a{
  color: #93c5fd; text-decoration: none; transition: color .15s ease;
}
.breadcumb-menu a:hover{ color: #bfdbfe; }


.breadcumb-content{ opacity: 0; transform: translateY(10px); }
.breadcumb-wrapper.is-inview .breadcumb-content{
  opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease;
}#service-sec.th-service-1 {
  position: relative;
  color: #fff;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(59,130,246,.08), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}


#service-sec .title-area .sub-title{
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  color: #93c5fd;
}
#service-sec .sec-title{ color:#fff; }


.row { display: flex; flex-wrap: wrap; }
.col-xl-4, .col-md-6 { width: 100%; padding: 0 12px; }
@media (min-width: 768px){ .col-md-6 { width: 50%; } }
@media (min-width: 1200px){ .col-xl-4 { width: 33.333%; } }
.gy-30 > [class*="col-"] { margin-top: 30px; }


#service-sec .service-card{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px 16px 16px;
  background: rgba(15,23,42,.65);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 16px 40px rgba(2,6,23,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  height: 100%;
}
#service-sec .service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(2,6,23,.45);
  background: rgba(15,23,42,.72);
}


#service-sec .service_card-bg-1{
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .45;
}
#service-sec .service_card-bg-1 img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05);
}
#service-sec .service-card::before{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(2,6,23,.55) 0%, rgba(2,6,23,.75) 100%);
}


#service-sec .service-card .box-icon{
  position: relative; z-index: 2;
  width: 54px; height: 54px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.18);
  border: 1px solid rgba(165,180,252,.28);
  box-shadow: 0 10px 24px rgba(99,102,241,.28);
  margin-bottom: 12px;
}
#service-sec .service-card .box-icon img{
  width: 28px; height: 28px; object-fit: contain; display:block;
}


#service-sec .service-card .box-content{
  position: relative; z-index: 2;
}
#service-sec .service-card .box-title{
  margin: 0 0 8px;
  color: #fff; font-weight: 800; font-size: 18px; line-height: 1.25;
}
#service-sec .service-card .box-title span{ background: transparent; }
#service-sec .service-card .box-text{
  margin: 0; color: #cbd5e1;
}


#service-sec .service-card{  transform: translateY(10px); }
#service-sec.is-inview .service-card{
  opacity:1; transform:none; transition: opacity .45s ease, transform .45s ease;
}
#service-sec.is-inview .col-xl-4:nth-child(1) .service-card{ transition-delay:.05s; }
#service-sec.is-inview .col-xl-4:nth-child(2) .service-card{ transition-delay:.12s; }
#service-sec.is-inview .col-xl-4:nth-child(3) .service-card{ transition-delay:.19s; }
#service-sec.is-inview .col-xl-4:nth-child(4) .service-card{ transition-delay:.26s; }
#service-sec.is-inview .col-xl-4:nth-child(5) .service-card{ transition-delay:.33s; }
#service-sec.is-inview .col-xl-4:nth-child(6) .service-card{ transition-delay:.40s; }#team-sec {
  position: relative;
  color: #fff;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(99,102,241,.08), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  
}


#team-sec .title-area .sub-title{
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  color: #a5b4fc;
}
#team-sec .sec-title{ color:#fff; }


.row { display:flex; flex-wrap:wrap; }
.col-xl-4, .col-lg-4, .col-sm-6 { width:100%; padding:0 12px; }
@media (min-width: 576px){ .col-sm-6 { width:50%; } }
@media (min-width: 992px){ .col-lg-4 { width:33.333%; } }
@media (min-width: 1200px){ .col-xl-4 { width:33.333%; } }
.gy-4 > [class*="col-"] { margin-top: 1rem; }


.team-card.style-2{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15,23,42,.55);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 16px 40px rgba(2,6,23,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  height: 100%;
}
.team-card.style-2:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(2,6,23,.45);
  background: rgba(15,23,42,.65);
}


.team-card .team-img{ position: relative; overflow: hidden; }
.team-card .team-img img{
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 5; object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease, filter .5s ease;
}
.team-card:hover .team-img img{ transform: scale(1.06); filter: contrast(1.02) saturate(1.03); }


.team-card .team-img::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height: 42%;
  background: linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,.6) 45%, rgba(2,6,23,.85) 100%);
  pointer-events: none;
}


.team-card .team-content{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.team-card .box-title{
  margin: 0; font-size: 18px; font-weight: 800; line-height: 1.25; color: #fff;
}
.team-card .box-title span{ background: transparent; }
.team-card .team-desig{
  color: #cbd5e1; font-size: 14px; line-height: 1.3;
}


#team-sec .team-card{ opacity: 0; transform: translateY(10px); }
#team-sec.is-inview .team-card{
  opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease;
}
#team-sec.is-inview .col-xl-4:nth-child(1) .team-card{ transition-delay:.05s; }
#team-sec.is-inview .col-xl-4:nth-child(2) .team-card{ transition-delay:.12s; }
#team-sec.is-inview .col-xl-4:nth-child(3) .team-card{ transition-delay:.19s; }
#team-sec.is-inview .col-xl-4:nth-child(4) .team-card{ transition-delay:.26s; }
#team-sec.is-inview .col-xl-4:nth-child(5) .team-card{ transition-delay:.33s; }
#team-sec.is-inview .col-xl-4:nth-child(6) .team-card{ transition-delay:.40s; }


#process-sec .process-3-title-box .sec-title{ color:#fff; }
#process-sec .process-3-title-box .box-text{ color:#e5e7eb; }.blog-details {
  color:#fff;
  background: rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(2,6,23,.35);
  padding:18px;
}
@media (min-width: 992px){ .blog-details { padding:22px; } }


.blog-details .blog-img {
  border-radius:14px; overflow:hidden; margin-bottom:14px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 28px rgba(2,6,23,.45);
}
.blog-details .blog-img img { display:block; width:100%; height:auto; aspect-ratio: 16/9; object-fit: cover; }


.blog-details .blog-meta {
  display:flex; flex-wrap:wrap; gap:12px; margin-bottom:10px;
  font-size:14px; color:#cbd5e1;
}
.blog-details .blog-meta span { display:inline-flex; align-items:center; gap:8px; }
.blog-details .blog-meta i { color:#93c5fd; }


.blog-details .blog-title {
  margin: 6px 0 10px; color:#fff;
  font-size: clamp(22px, 4.2vw, 34px); font-weight: 800; line-height:1.2;
}


.blog-content { color:#e5e7eb; }
.blog-content p { margin: 0 0 12px; }
.blog-content h3 {
  margin: 18px 0 8px; color:#fff; font-weight:800; font-size:20px;
}
.blog-content ul { margin: 0 0 12px 18px; padding:0; }
.blog-content li { margin: 6px 0; }
.blog-content a { color:#93c5fd; text-decoration: underline; }
.blog-content a:hover { color:#bfdbfe; }


.blog-content blockquote {
  margin:14px 0; padding:12px 14px;
  border-left:3px solid #6366f1;
  background: rgba(99,102,241,.08);
  color:#e5e7eb; border-radius: 8px;
}


.blog-content img, .blog-content figure {
  display:block; max-width:100%; height:auto; border-radius:12px;
  margin: 12px 0; border:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 20px rgba(2,6,23,.35);
}
 
#blog-sec-internal-is-not-used ~ .blog-details {} 
section .blog-details.inview { opacity:1; transform:none; transition: opacity .45s ease, transform .45s ease; }


.sidebar .widget {
  background: rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(2,6,23,.35);
  padding:16px; 
}
@media (min-width: 992px){ .sidebar .widget { position: sticky; top: 24px; } }

.sidebar .widget-title {
  margin:0 0 12px;
  color:#fff; font-weight:800; font-size:16px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(148,163,184,.18);
}


@media (max-width: 991px) {
   .sidebar .widget {
        margin-top:16px;
    }
    .col-lg-4 {
        padding: 0;
    }
}

.recent-posts { display:grid; gap:12px; }
.post-item {
  display:grid; grid-template-columns: 84px 1fr; gap:10px;
  align-items:center;
  border:1px solid rgba(148,163,184,.18);
  border-radius:12px;
  background: rgba(2,6,23,.35);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.post-item:hover { transform: translateY(-2px); box-shadow:0 10px 26px rgba(2,6,23,.35); background: rgba(2,6,23,.45); }

.post-item img { width:100%; height:100%; object-fit: cover; aspect-ratio: 1 / 1; display:block; }
.post-content { padding:10px 10px 10px 0; }
.post-content h4 { margin:0 0 4px; font-size:14px; font-weight:800; line-height:1.25; color:#fff; }
.post-content h4 a { color:#fff; text-decoration:none; }
.post-content h4 a:hover { color:#bfdbfe; }
.post-content span { display:block; font-size:12px; color:#cbd5e1; opacity:.9; }


.space { padding: 72px 0; }
@media (min-width: 992px){ .space { padding: 96px 0; } }@media (min-width: 992px) {
  .col-lg-8 { width: 66.6667%; }   
  .col-lg-4 { width: 33.3333%; }   
}
.iti__selected-dial-code {
    color: white;
}

 .iti__country-name {
    color: black;
 }
.cookies-content {
  color: #e5e7eb;
  background: rgba(15,23,42,.55);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(2,6,23,.35);
  padding: 18px;
}
@media (min-width: 992px){ .cookies-content { padding: 26px; } }

.cookies-content h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 4.4vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .2px;
}
.cookies-content h2 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: clamp(18px, 3.4vw, 22px);
  font-weight: 800;
}
.cookies-content h3 {
  margin: 14px 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.cookies-content p { margin: 0 0 10px; }
.cookies-content ul { margin: 0 0 12px 18px; padding: 0; }
.cookies-content li { margin: 6px 0; }


.cookies-content .highlight {
  border: 1px solid rgba(147,197,253,.28);
  background: rgba(2,6,23,.35);
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
  box-shadow: 0 8px 18px rgba(2,6,23,.35);
}
.cookies-content .highlight p { margin: 0; }


.cookies-content a {
  color: #93c5fd;
  text-decoration: underline;
  transition: color .15s ease;
}
.cookies-content a:hover { color: #bfdbfe; }


.cookies-content .contact-info {
  border-left: 3px solid #6366f1;
  background: rgba(99,102,241,.08);
  padding: 10px 12px;
  border-radius: 8px;
  margin: 10px 0 12px;
}


.cookie-table-wrap { overflow: auto; -webkit-overflow-scrolling: touch; }
.cookie-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(2,6,23,.35);
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 12px;
  overflow: hidden; 
  box-shadow: 0 10px 26px rgba(2,6,23,.35);
  margin: 12px 0;
}
.cookie-table thead th {
  position: sticky; top: 0; z-index: 1;
  background: rgba(15,23,42,.8);
  color: #fff; font-weight: 800;
  font-size: 14px; letter-spacing: .2px;
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(148,163,184,.22);
}
.cookie-table tbody td {
  padding: 12px;
  font-size: 14px;
  color: #e5e7eb;
  border-bottom: 1px dashed rgba(148,163,184,.22);
}
.cookie-table tbody tr:last-child td { border-bottom: 0; }
.cookie-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,.02); }


@media (max-width: 575.98px){
  .cookie-table thead th, .cookie-table tbody td { padding: 10px; font-size: 13px; }
}
 
.cookies-content.inview { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }


@media print {
  .cookies-content {
    background: #fff !important; color: #000 !important;
    border: none; box-shadow: none; border-radius: 0; padding: 0;
  }
  .cookies-content a { color: #000; text-decoration: underline; }
  .cookie-table {
    background: #fff; border: 1px solid #000; box-shadow: none;
  }
  .cookie-table thead th { background: #f0f0f0; color: #000; border-bottom-color: #000; }
  .cookie-table tbody td { color: #000; border-bottom-color: #000; }
}
.th-blog-wrapper.blog-details{color:#fff;background:
  radial-gradient(60% 50% at 80% 0%, rgba(99,102,241,.08), transparent 60%),
  linear-gradient(180deg,#0b1220 0%,#0f172a 100%); border-radius: 0;}
.space-bottom{padding-bottom:72px}
@media(min-width:992px){.space-bottom{padding-bottom:96px}}


.sidebar-area .widget{
  background:rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(2,6,23,.35);
  padding:16px;margin-bottom:16px
}
.sidebar-area .widget_title{
  margin:0 0 12px;color:#fff;font-weight:800;font-size:16px;
  padding-bottom:8px;border-bottom:1px solid rgba(148,163,184,.18)
}


.widget_categories ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.widget_categories li{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:10px 12px;border-radius:12px;
  background:rgba(2,6,23,.35);
  border:1px solid rgba(148,163,184,.18);
  transition:transform .15s ease,box-shadow .2s ease,background .2s ease
}
.widget_categories li:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(2,6,23,.35);background:rgba(2,6,23,.45)}
.widget_categories a{color:#e5e7eb;text-decoration:none}
.widget_categories a:hover{color:#bfdbfe}
.widget_categories li span{width:14px;height:14px;position:relative;flex:0 0 14px}
.widget_categories li span i{display:none} 
.widget_categories li span::after{
  content:"";position:absolute;inset:0;
  border-right:2px solid #93c5fd;border-bottom:2px solid #93c5fd;
  transform:rotate(-45deg); 
}


.widget_call .widget-call{padding:8px}
.widget_call .box-title{margin:0 0 6px;font-weight:800}
.widget_call .box_text{margin:0 0 10px;color:#cbd5e1}
.widget_call .info-box{
  display:flex;align-items:flex-start;gap:10px;
  padding:10px;border-radius:12px;margin:8px 0;
  background:rgba(2,6,23,.35);border:1px solid rgba(148,163,184,.18)
}
.widget_call .info-box_icon{
  width:40px;height:40px;border-radius:10px;flex:0 0 40px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(59,130,246,.12);
  border:1px solid rgba(147,197,253,.22);color:#93c5fd
}
.widget_call .info-box_subtitle{display:block;color:#cbd5e1;font-size:12px;margin-bottom:2px}
.widget_call .info-box_text{margin:0}
.widget_call .info-box_link{color:#bfdbfe;text-decoration:underline}
.widget_call .info-box_link:hover{color:#fff}


.th-faq-wrapper .title-area .sub-title{
  background:rgba(59,130,246,.12);border:1px solid rgba(59,130,246,.25);color:#93c5fd
}
.th-faq-wrapper .sec-title{color:#fff}
.th-faq-wrapper .accordion{display:grid;gap:12px}
.th-faq-wrapper .accordion-card{
  border-radius:16px;background:rgba(15,23,42,.65);
  border:1px solid rgba(148,163,184,.18);box-shadow:0 16px 36px rgba(2,6,23,.35);overflow:hidden
}
.th-faq-wrapper .accordion-button{
  width:100%;display:flex;align-items:center;gap:12px;justify-content:space-between;
  padding:16px 18px;background:transparent;color:#fff;font-weight:700;font-size:16px;border:0;cursor:pointer
}
.th-faq-wrapper .accordion-button:hover{background:rgba(255,255,255,.04)}

.th-faq-wrapper .accordion-button::after{
  content:"\f107";font-family:"Font Awesome 6 Free";font-weight:900;
  margin-left:auto;color:#93c5fd;opacity:.95;transition:transform .2s ease
}
.th-faq-wrapper .accordion-button[aria-expanded="true"]::after{transform:rotate(180deg)}




.th-faq-wrapper .accordion-collapse{overflow:hidden}
.th-faq-wrapper .accordion-body{padding:0 18px 18px}
.th-faq-wrapper .faq-text{margin:0;color:#e5e7eb}


.th-faq-wrapper .accordion-collapse.collapse{display:block;max-height:0;transition:max-height .25s ease}
.th-faq-wrapper .accordion-collapse.collapse.show{max-height:540px}


.brand-bg-wrap{
  background:rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(2,6,23,.35);
  padding:16px
}
.brand-1-top .box-title{margin:0 0 8px;color:#fff;font-weight:800}
.brand-box{
  height:70px;display:flex;align-items:center;justify-content:center;
  border-radius:12px;background:rgba(2,6,23,.35);
  border:1px solid rgba(148,163,184,.18);
  transition:transform .15s ease,box-shadow .2s ease,background .2s ease
}
.brand-box:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(2,6,23,.35);background:rgba(2,6,23,.45)}
.brand-box img{max-height:34px;width:auto;display:block;opacity:.9}


.no-swiper #brandSlider2 .swiper-wrapper{
  display:grid;gap:12px;grid-template-columns:repeat(2,minmax(0,1fr))
}
@media(min-width:768px){.no-swiper #brandSlider2 .swiper-wrapper{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(min-width:992px){.no-swiper #brandSlider2 .swiper-wrapper{grid-template-columns:repeat(5,minmax(0,1fr))}}
@media(min-width:1400px){.no-swiper #brandSlider2 .swiper-wrapper{grid-template-columns:repeat(6,minmax(0,1fr))}}


.sidebar-area .widget,.th-faq-wrapper,.brand-bg-wrap{opacity:0;transform:translateY(10px)}
.inview-fade{opacity:1!important;transform:none!important;transition:opacity .45s ease,transform .45s ease}



#faqAccordion .accordion-button::after {
    content: "";
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #93c5fd;
    border-bottom: 2px solid #93c5fd;
    transform: rotate(45deg);
    transition: transform .2s ease, border-color .2s ease, opacity .2s ease;


    background: none !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
}

#faqAccordion .accordion-button:hover::after {
    border-color: #bfdbfe;
}

#faqAccordion .accordion-button[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}.privacy-content{
  color:#e5e7eb;
  background:rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(2,6,23,.35);
  padding:18px;
}
@media (min-width:992px){ .privacy-content{ padding:26px; } }

.privacy-content h1{
  margin:0 0 8px; color:#fff;
  font-size:clamp(24px,4.4vw,38px);
  line-height:1.15; font-weight:800; letter-spacing:.2px;
}
.privacy-content h2{
  margin:18px 0 8px; color:#fff;
  font-size:clamp(18px,3.4vw,22px); font-weight:800;
}
.privacy-content h3{
  margin:14px 0 6px; color:#fff; font-size:18px; font-weight:800;
}
.privacy-content p{ margin:0 0 10px; }
.privacy-content ul{ margin:0 0 12px 18px; padding:0; }
.privacy-content li{ margin:6px 0; }

.privacy-content a{
  color:#93c5fd; text-decoration:underline; transition:color .15s ease;
}
.privacy-content a:hover{ color:#bfdbfe; }


.privacy-content .highlight{
  border:1px solid rgba(147,197,253,.28);
  background:rgba(2,6,23,.35);
  border-radius:12px; padding:12px; margin:12px 0;
  box-shadow:0 8px 18px rgba(2,6,23,.35);
}
.privacy-content .highlight p{ margin:0; }


.privacy-content .contact-info{
  border-left:3px solid #22c55e;
  background:rgba(34,197,94,.10);
  padding:10px 12px; border-radius:8px; margin:10px 0 12px;
}
 

@media print{
  .privacy-content{
    background:#fff !important; color:#000 !important;
    border:none; box-shadow:none; border-radius:0; padding:0;
  }
  .privacy-content a{ color:#000; text-decoration:underline; }
}

.terms-content{
  color:#e5e7eb;
  background:rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(2,6,23,.35);
  padding:18px;
}
@media (min-width:992px){ .terms-content{ padding:26px; } }

.terms-content h1{
  margin:0 0 8px; color:#fff;
  font-size:clamp(24px,4.4vw,38px);
  line-height:1.15; font-weight:800; letter-spacing:.2px;
}
.terms-content h2{
  margin:18px 0 8px; color:#fff;
  font-size:clamp(18px,3.4vw,22px); font-weight:800;
}
.terms-content h3{
  margin:14px 0 6px; color:#fff; font-size:18px; font-weight:800;
}

.terms-content p{ margin:0 0 10px; }
.terms-content ul{ margin:0 0 12px 18px; padding:0; }
.terms-content li{ margin:6px 0; }

.terms-content a{
  color:#93c5fd; text-decoration:underline; transition:color .15s ease;
}
.terms-content a:hover{ color:#bfdbfe; }


.terms-content .highlight{
  border:1px solid rgba(147,197,253,.28);
  background:rgba(2,6,23,.35);
  border-radius:12px; padding:12px; margin:12px 0;
  box-shadow:0 8px 18px rgba(2,6,23,.35);
}
.terms-content .highlight p{ margin:0; }


.terms-content .contact-info{
  border-left:3px solid #f59e0b;
  background:rgba(245,158,11,.10);
  padding:10px 12px; border-radius:8px; margin:10px 0 12px;
}

 

@media print{
  .terms-content{
    background:#fff !important; color:#000 !important;
    border:none; box-shadow:none; border-radius:0; padding:0;
  }
  .terms-content a{ color:#000; text-decoration:underline; }
}