/* =========================
   GLOBAL CSS START
========================= */
@import url('./gilroy.css');

:root {
    --font-body: 'Gilroy';
    --color-primary: #01A8E7;
    --color-white: #FCFCFC;
    --color-black: #000000;
    --body-color: #060606;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--body-color);
    position: relative;
}


/* =========================
   WEBKIT SCROLLBAR START
========================= */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 999px;
    border: 2px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
    background: #0298cf;
}

/* =========================
   WEBKIT SCROLLBAR END
========================= */

main {
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

br {
    display: block;
}

@media(max-width: 991px) {
    br {
        display: none;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}


.blog-page-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.blog-page-banner-breadcrumb a,
.blog-page-banner-breadcrumb span {
    color: var(--color-white);
}

@media (max-width: 1199px) {
    .blog-page-banner-breadcrumb {
        margin-bottom: 26px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .blog-page-banner-breadcrumb {
        margin-bottom: 20px;
        font-size: 14px;
        gap: 6px;
    }
}


.banner-heading {
    font-weight: 700;
    font-size: 128px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    background: linear-gradient(80.76deg, #FFFFFF 19.75%, #8DE0F8 55.95%, #FFFFFF 87.95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transform: rotate(0.11deg);
}

@media (max-width: 1599px) {
    .banner-heading {
        font-size: 96px;
    }
}

@media (max-width: 1199px) {
    .banner-heading {
        font-size: 72px;
    }
}

@media (max-width: 991px) {
    .banner-heading {
        font-size: 56px;
        line-height: 1.08;
    }
}

@media (max-width: 767px) {
    .banner-heading {
        font-size: 38px;
        line-height: 1.12;
        margin-bottom: 16px;
    }
}


.banner-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .banner-content {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .banner-content {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .banner-content {
        font-size: 16px;
    }
}


.section-title {
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #71717A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width: 1399px) {
    .section-title {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 26px;
        line-height: 1.2;
    }
}


.section-subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    display: block;
    color: var(--color-white);
}

@media (max-width: 991px) {
    .section-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
}


.section-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-white);
}

@media (max-width: 991px) {
    .section-content {
        font-size: 16px;
        line-height: 1.4;
    }
}


section {
    padding-block: 100px;
}

@media (max-width: 1399px) {
    section {
        padding-block: 80px;
    }
}

@media (max-width: 991px) {
    section {
        padding-block: 70px;
    }
}

@media (max-width: 767px) {
    section {
        padding-block: 55px;
    }
}

/* =========================
   GLOBAL CSS END
========================= */


/* =========================
   HEADER CSS START
========================= */
.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 645px;
    background-image: url("../img/wyse-banner-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

.banner-bg-image::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 560px;
    border-radius: 1100px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(1, 168, 231, 0.34) 0%, rgba(1, 168, 231, 0.16) 38%, rgba(1, 168, 231, 0) 100%);
    filter: blur(30px);
    opacity: 0.9;
}

.site-header {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.header-navbar {
    width: 100%;
    padding: 0;
}

.header-shell {
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
}

.header-inner {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-nav-group {
    display: flex;
    align-items: center;
    gap: 44px;
    flex: 1 1 0;
}

.header-nav-group.header-nav-right {
    justify-content: flex-end;
}

.header-nav-link {
    position: relative;
    min-width: 136px;
    height: 38px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-white);
    transition: 0.3s ease;
}

.header-nav-link:hover {
    color: var(--color-primary);
}

.header-nav-link.is-active {
    background: rgba(26, 34, 45, 0.92);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.header-nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(103, 162, 214, 0) 0%, #67A2D6 50%, rgba(103, 162, 214, 0) 100%);
}

.header-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 20px;
    background: var(--color-white);
    display: block;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header .header-nav-link[href*="#"].is-active {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--color-white);
}

.site-header .header-nav-link[href*="#"].is-active:hover {
    color: var(--color-primary);
}

.site-header .header-nav-link[href*="#"].is-active::after{
	display: none ;
}

@media (max-width: 1399px) {
    .site-header {
        top: 26px;
    }

    .header-shell {
        padding-left: 44px;
        padding-right: 44px;
    }

    .header-nav-group {
        gap: 24px;
    }

    .header-nav-link {
        min-width: 118px;
        padding: 0 18px;
    }
}

@media (max-width: 1199px) {
    .header-shell {
        padding-left: 28px;
        padding-right: 28px;
    }

    .header-nav {
        gap: 24px;
    }

    .header-nav-group {
        gap: 12px;
    }

    .header-nav-link {
        min-width: 102px;
        padding: 0 14px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {

    .header-shell {
        padding-inline: 0;
    }

    .banner-bg-image {
        min-height: 760px;
        height: 760px;
        background-position: 58% top;
    }

    .banner-bg-image::before {
        width: 760px;
        height: 420px;
        top: -150px;
    }

    .site-header {
        top: 20px;
    }

    .header-inner {
        min-height: 54px;
        justify-content: space-between;
    }

    .header-brand {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        z-index: 3;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 3;
    }

    .header-nav {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(8, 10, 14, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    }

    .header-nav.show {
        display: flex;
    }

    .header-nav-group,
    .header-nav-group.header-nav-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
    }

    .header-nav-link {
        width: 100%;
        min-width: 100%;
        justify-content: flex-start;
        padding: 0 18px;
    }

    .header-nav-link.is-active::after {
        left: 18px;
        right: 18px;
    }
}

@media (max-width: 767px) {
    .banner-bg-image {
        min-height: 640px;
        height: 640px;
        background-position: 62% top;
    }

    .banner-bg-image::before {
        width: 540px;
        height: 320px;
        top: -110px;
    }

    .site-header {
        top: 14px;
    }

    .header-nav {
        top: calc(100% + 10px);
        padding: 14px;
        border-radius: 16px;
    }

    .header-nav-link {
        height: 42px;
        font-size: 13px;
    }
}

/* =========================
   HEADER CSS END
========================= */



/* =========================
   BANNER CSS START
========================= */
.banner-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 290px;
    padding-bottom: 250px;
    overflow-x: hidden;
}

.banner-section .btns-wrappper {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-top: 83px;
}

.banner-section .btns-wrappper a {
    display: inline-block;
}

.banner-section .btns-wrappper a img {
    display: block;
}

@media (max-width: 1399px) {
    .banner-section {
        padding-top: 250px;
        padding-bottom: 210px;
    }

    .banner-section .btns-wrappper {
        gap: 28px;
        margin-top: 65px;
    }

    .banner-section .btns-wrappper a img {
        max-height: 58px;
        width: auto;
    }
}

@media (max-width: 1199px) {
    .banner-section {
        padding-top: 220px;
        padding-bottom: 180px;
    }

    .banner-section .btns-wrappper {
        gap: 22px;
        margin-top: 48px;
    }

    .banner-section .btns-wrappper a img {
        max-height: 52px;
        width: auto;
    }
}

@media (max-width: 991px) {
    .banner-section {
        padding-top: 190px;
        padding-bottom: 50px;
    }

    .banner-section .btns-wrappper {
        gap: 18px;
        margin-top: 36px;
        flex-wrap: wrap;
    }

    .banner-section .btns-wrappper a img {
        max-height: 46px;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding-top: 150px;
        padding-bottom: 95px;
    }

    .banner-section .btns-wrappper {
        gap: 14px;
        margin-top: 28px;
        align-items: flex-start;
    }

    .banner-section .btns-wrappper a img {
        max-height: 42px;
    }
}

/* =========================
   BANNER CSS END
========================= */



/* =========================
   STREAM COMPANIES CSS START
========================= */
.stream-companies {
    position: relative;
}

.stream-companies::after {
    content: "";
    position: absolute;
    width: 893.66px;
    height: 893.66px;
    border-radius: 50%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(1, 168, 231, 0.20);
    filter: blur(120px);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.stream-companies .stream-companies-content-wrapper {
    width: 100%;
    max-width: 1295px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.stream-companies .companies-logo-wrapper {
    min-height: 186px;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-companies .img-wrapper {
    position: relative;
    z-index: 1;
}

.stream-companies .img-wrapper img,
.stream-companies .companies-logo-wrapper img {
    margin-inline: auto;
}

@media (max-width: 991px) {
    .stream-companies .companies-logo-wrapper {
        min-height: 110px;
        margin-bottom: 15px;
    }

    .stream-companies::after {
        width: 680px;
        height: 680px;
        filter: blur(100px);
    }
}

@media (max-width: 767px) {
    .stream-companies::after {
        width: 520px;
        height: 520px;
        filter: blur(85px);
    }
}

@media (max-width: 575px) {

    .stream-companies .companies-logo-wrapper,
    .stream-companies .img-wrapper {
        width: 100%;
        max-width: 75%;
        margin-inline: auto;
    }

    .stream-companies::after {
        width: 390px;
        height: 390px;
        filter: blur(70px);
    }
}

/* =========================
   STREAM COMPANIES CSS END
========================= */



/* =========================
   ABOUT US CSS START
========================= */
.about-us {
    position: relative;
    background-image: url('../img/about-banner-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 190px;
    overflow-x: hidden;
}

.about-us .img-wrapper {
    position: relative;
    z-index: 1;
}

.about-us .img-wrapper img {
    margin-inline: auto;
}

.about-us .about-text-wrapper {
    position: relative;
    background: transparent;
    border: 2.014px solid var(--color-primary);
    border-radius: 22px;
    padding: 34px 34px 38px;
    z-index: 1;
}

.about-us .about-text-wrapper .section-subtitle {
    margin-bottom: 28px;
}

.about-us .about-text-wrapper .section-title {
    margin-bottom: 28px;
}

@media (max-width: 1399px) {
    .about-us {
        padding-block: 120px;
    }
}

@media (max-width: 991px) {
    .about-us {
        padding-block: 80px;
    }

    .about-us .about-text-wrapper {
        padding: 24px;
        border-radius: 18px;
    }

    .about-us .about-text-wrapper .section-subtitle {
        margin-bottom: 18px;
    }

    .about-us .about-text-wrapper .section-title {
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .about-us {
        padding-block: 50px;
    }

    .about-us .about-text-wrapper {
        padding: 20px;
        border-radius: 16px;
    }
}

/* =========================
   ABOUT US CSS END
========================= */


/* =========================
   OUR FEATURES CSS START
========================= */
.our-features {
    position: relative;
}

.our-features .text-cont {
    position: relative;
    z-index: 2;
}

.our-features .img-cont {
    position: relative;
    z-index: 2;
}

.our-features .img-cont::after {
    content: "";
    position: absolute;
    width: 440.66px;
    height: 430.66px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(1, 168, 231, 0.20);
    filter: blur(120px);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.our-features .img-cont img {
    position: relative;
    z-index: 1;
}

.our-features .gps-tracking-main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
    position: relative;
    z-index: 2;
}

.our-features .gps-tracking-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.our-features .gps-tracking-title::before {
    content: "";
    display: inline-block;
    width: 45px;
    height: 34px;
    background-image: url('../img/streamsyn-logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.our-features .gps-tracking-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
}

@media (max-width: 1399px) {
    .our-features .gps-tracking-main-wrapper {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .our-features .gps-tracking-title {
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .our-features .gps-tracking-main-wrapper {
        gap: 15px;
    }

    .our-features .gps-tracking-title {
        font-size: 20px;
    }

    .our-features .gps-tracking-content {
        font-size: 16px;
        line-height: 1.3;
    }

    .our-features .img-cont::after {
        width: 360px;
        height: 350px;
        filter: blur(95px);
    }
}

@media (max-width: 767px) {
    .our-features .text-cont {
        margin-bottom: 30px !important;
    }

    .our-features .gps-tracking-title {
        align-items: flex-start;
        gap: 10px;
    }

    .our-features .gps-tracking-title::before {
        width: 38px;
        height: 29px;
    }

    .our-features .img-cont::after {
        width: 280px;
        height: 270px;
        filter: blur(75px);
    }
}

/* =========================
   OUR FEATURES CSS END
========================= */


/* =========================
   Built for Riders CSS START
========================= */
.built-for-rdiers {
    position: relative;
}

.built-for-rdiers::before {
    content: "";
    position: absolute;
    width: 577.02px;
    height: 562.42px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) matrix(-1, 0, 0, 1, 0, 0);
    background: rgba(1, 168, 231, 0.70);
    opacity: 0.45;
    filter: blur(157.3px);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.built-for-rdiers .text-cont {
    position: relative;
    z-index: 9;
}

.built-for-rdiers .built-for-rdiers-slider-wrap {
    position: relative;
    width: 100%;
    z-index: 2;
    padding-top: 50px;
}

/* Left fade overlay */
.built-for-rdiers .built-for-rdiers-slider-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 38%;
    height: 90%;
    background: linear-gradient(270deg, rgba(7, 7, 7, 0) -77.28%, #070707 100%);
    z-index: 3;
    pointer-events: none;
    user-select: none;
}

/* Right fade overlay */
.built-for-rdiers .built-for-rdiers-slider-wrap::before {
    content: "";
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%) matrix(-1, 0, 0, 1, 0, 0);
    width: 38%;
    height: 90%;
    background: linear-gradient(270deg, rgba(7, 7, 7, 0) -77.28%, #070707 100%);
    z-index: 3;
    pointer-events: none;
    user-select: none;
}

.built-for-rdiers .buildt-for-rdiers-slider {
    position: relative;
    z-index: 2;
}

.built-for-rdiers .buildt-for-rdiers-slider .owl-stage-outer {
    overflow: visible;
}

.built-for-rdiers .buildt-for-rdiers-slider .owl-stage {
    display: flex;
    align-items: center;
}

.built-for-rdiers .buildt-for-rdiers-slider .owl-item {
    transition: all 0.35s ease;
}

.built-for-rdiers .buildt-for-rdiers-slider .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 6px;
}

.built-for-rdiers .buildt-for-rdiers-slider .screen-card {
    width: 100%;
    transition: transform 0.35s ease;
}

.built-for-rdiers .buildt-for-rdiers-slider .screen-card img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.built-for-rdiers .buildt-for-rdiers-slider .owl-item.center {
    z-index: 2;
}

.built-for-rdiers .buildt-for-rdiers-slider .owl-item.center .screen-card {
    transform: scale(1.12);
}

@media (min-width: 1400px) {
    .built-for-rdiers .buildt-for-rdiers-slider .owl-item.center {
        margin-right: 25px !important;
        margin-left: 10px !important;
    }
}

@media (max-width: 1199px) {

    .built-for-rdiers .built-for-rdiers-slider-wrap::before,
    .built-for-rdiers .built-for-rdiers-slider-wrap::after {
        width: 36%;
    }
}

@media (max-width: 991px) {
    .built-for-rdiers .built-for-rdiers-slider-wrap {
        padding-top: 30px;
    }

    .built-for-rdiers .built-for-rdiers-slider-wrap::before,
    .built-for-rdiers .built-for-rdiers-slider-wrap::after {
        width: 34%;
    }

    .built-for-rdiers::before {
        width: 460px;
        height: 450px;
        filter: blur(120px);
    }
}

@media (max-width: 767px) {
    .built-for-rdiers .built-for-rdiers-slider-wrap {
        padding-top: 15px;
    }

    .built-for-rdiers .built-for-rdiers-slider-wrap::before,
    .built-for-rdiers .built-for-rdiers-slider-wrap::after {
        width: 30%;
        top: 52%;
    }

    .built-for-rdiers::before {
        width: 340px;
        height: 330px;
        filter: blur(90px);
    }
}

@media (max-width: 575px) {

    .built-for-rdiers .built-for-rdiers-slider-wrap::before,
    .built-for-rdiers .built-for-rdiers-slider-wrap::after {
        display: none;
    }

    .built-for-rdiers::before {
        width: 260px;
        height: 250px;
        filter: blur(70px);
    }
}

/* =========================
   Built for Riders CSS End
========================= */


/* =========================
   Download Our App CSS START
========================= */
.download-app {
    position: relative;
}

.download-app .img-cont {
    position: relative;
    z-index: 2;
}

.download-app .img-cont::after {
    content: "";
    position: absolute;
    width: 440.66px;
    height: 430.66px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(1, 168, 231, 0.30);
    filter: blur(120px);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.download-app .img-cont img {
    position: relative;
    z-index: 1;
    margin-inline: auto;
}

.download-app .text-cont .section-subtitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.download-app .text-cont ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    gap: 20px;
}

.download-app .text-cont ul li {
    max-width: 30%;
}

.download-app .text-cont ul li a {
    text-decoration: none;
    display: inline-block;
}

.download-app .text-cont ul li a img {
    display: block;
}

@media (max-width: 1199px) {
    .download-app .text-cont .section-subtitle {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .download-app .img-cont {
        display: flex;
        justify-content: center;
        align-items: baseline;
    }

    .download-app .text-cont .section-subtitle {
        font-size: 22px;
        text-align: center;
    }

    .download-app .text-cont .section-title,
    .download-app .text-cont .section-content {
        text-align: center;
        justify-content: center;
    }

    .download-app .text-cont ul {
        justify-content: center;
        margin-top: 20px;
    }

    .download-app .img-cont::after {
        width: 360px;
        height: 350px;
        filter: blur(95px);
    }
}

@media (max-width: 767px) {
    .download-app .text-cont .section-subtitle {
        font-size: 20px;
    }

    .download-app .img-cont::after {
        width: 290px;
        height: 280px;
        filter: blur(80px);
    }
}

@media (max-width: 575px) {
    .download-app .text-cont ul {
        align-items: center;
        gap: 15px;
    }

    .download-app .text-cont ul li {
        max-width: 80%;
    }
}

/* =========================
   Download Our App CSS End
========================= */



/* ========================= 
    FAQs section Start 
========================= */
.faqs .text-cont {
    margin-bottom: 50px;
}

.faqs .text-cont .section-title {
    justify-content: center;
    margin-bottom: 14px;
}

.faqs .text-cont .section-content {
    text-align: center;
}

.faqs-accordion .accordion-item {
    background: transparent;
    border: 1px solid #243340;
    border-top: 0;
    padding: 25px 40px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.faqs-accordion .row>[class^="col"]:nth-child(odd) .accordion-item {
    border-left: 0;
}

.faqs-accordion .row>[class^="col"]:nth-child(even) .accordion-item {
    border-right: 0;
}

.faqs-accordion .accordion-header {
    margin: 0;
}

.faqs-accordion .accordion-button {
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--color-white);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
    text-transform: uppercase;
    position: relative;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faqs-accordion .accordion-button span {
    display: block;
    flex: 1 1 auto;
}

.faqs-accordion .accordion-button::after {
    content: "";
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid #243340;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px 7px;
    background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.4951 0.584009L5.53958 5.53955L0.584034 0.584009" stroke="%23CACACE" stroke-width="1.65185"/></svg>');
    transition: transform 0.3s ease;
}

.faqs-accordion .accordion-item.active .accordion-button::after {
    transform: rotate(180deg);
}

.faqs-accordion .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

/* Collapse */
.faqs-accordion .accordion-collapse {
    display: none;
}

.faqs-accordion .accordion-body {
    padding: 25px 0 0;
}

.faqs-accordion .accordion-body p {
    color: #797C86;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .faqs-accordion .row>[class^="col"]:nth-last-child(-n+2) .accordion-item {
        border-bottom: 0;
    }
}

@media (max-width: 991px) {
    .faqs .text-cont {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .faqs-accordion .accordion-item {
        padding: 25px 20px;
    }

    .faqs-accordion .accordion-button {
        font-size: 15px;
    }
}

/* ========================= 
    FAQ CSS END 
========================= */



/* =========================
   BLOG CARDS CSS START
========================= */

.blog-page-banner {
    padding-top: 180px;
    padding-bottom: 70px;
    background: transparent;
}

.blog-page-banner .blog-page-title {
    margin: 0;
    font-weight: 700;
    font-size: 128px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(80.76deg, #FFFFFF 19.75%, #8DE0F8 55.95%, #FFFFFF 87.95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 35px;
}

.blog-page-banner .blog-page-topics-wrap {
    width: 100%;
    max-width: 540px;
}

.blog-page-banner .blog-page-topics-title {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-white);
}

.blog-page-banner .blog-page-topics-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 12px;
}

.blog-page-banner .blog-page-topic-pill {
    min-height: 48px;
    padding: 14px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 1;
    font-weight: 400;
    color: var(--color-white);
    background: transparent;
    transition: 0.3s ease;
}

.blog-page-banner .blog-page-topic-pill:hover {
    background: rgba(1, 168, 231, 0.12);
}

.blog-page-banner .blog-page-search-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.blog-page-banner .blog-page-search-form {
    width: 100%;
    position: relative;
    min-height: 60px;
    background: linear-gradient(90deg, #121C2B 0%, #0D1624 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 52px;
}

.blog-page-banner .blog-page-search-form input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: #FCFCFC;
    padding: 0;
}

.blog-page-banner .blog-page-search-form input::placeholder {
    color: #FCFCFC;
    opacity: 1;
}

.blog-page-banner .blog-page-search-btn {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog-page-banner .blog-page-search-btn svg {
    display: block;
}

@media (max-width: 1399px) {
    .blog-page-banner {
        padding-top: 165px;
        padding-bottom: 60px;
    }

    .blog-page-banner .blog-page-title {
        font-size: 96px;
    }
}

@media (max-width: 1199px) {
    .blog-page-banner {
        padding-top: 150px;
        padding-bottom: 55px;
    }

    .blog-page-banner .blog-page-title {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .blog-page-banner .blog-page-topics-title {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .blog-page-banner .blog-page-topic-pill {
        min-height: 34px;
        padding: 10px 15px;
        font-size: 16px;
    }

    .blog-page-banner .blog-page-search-form {
        min-height: 50px;
        padding: 0 16px 0 46px;
    }
}

@media (max-width: 991px) {
    .blog-page-banner {
        padding-top: 135px;
        padding-bottom: 50px;
    }

    .blog-page-banner .blog-page-title {
        font-size: 56px;
        line-height: 1.08;
    }

    .blog-page-banner .blog-page-topics-wrap {
        max-width: 100%;
    }

    .blog-page-banner .blog-page-search-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .blog-page-banner {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .blog-page-banner .blog-page-title {
        font-size: 42px;
        line-height: 1.12;
        margin-bottom: 15px;
    }

    .blog-page-banner .blog-page-topics-title {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .blog-page-banner .blog-page-topics-list {
        gap: 10px;
    }

    .blog-page-banner .blog-page-topic-pill {
        min-height: 34px;
        padding: 8px 15px;
        font-size: 14px;
    }

    .blog-page-banner .blog-page-search-form input {
        font-size: 15px;
    }

    .blog-page-banner .blog-page-search-btn {
        left: 16px;
    }
}

/* Blog Cards Section Start */

.blog-listing-cards-section .blog-listing-card {
    position: relative;
    overflow: hidden;
    background-color: #1f1f1f;
    height: 100%;
}

.blog-listing-cards-section .blog-listing-card-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.515 / 1;
}

.blog-listing-cards-section .blog-listing-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-listing-cards-section .blog-listing-card:hover .blog-listing-card-image img {
    transform: scale(1.05);
}

.blog-listing-cards-section .blog-listing-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 19px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(24, 16, 16, 0.72) 26%, rgba(22, 15, 16, 0.92) 100%);
}

.blog-listing-cards-section .blog-listing-card-content::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}

.blog-listing-cards-section .blog-listing-card-tag {
    min-height: 25px;
    padding: 5px 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
    position: relative;
}

.blog-listing-cards-section .blog-listing-card-tag::before {
    content: "";
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
    display: block;
    border-radius: 50%;
    background: var(--color-white);
    margin-right: 4px;
}

.blog-listing-cards-section .blog-listing-card-title {
    margin-bottom: 8px;
}

.blog-listing-cards-section .blog-listing-card-title a {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-white);
    transition: 0.3s ease;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-listing-cards-section .blog-listing-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 12px;
    opacity: 0.9;
}

.blog-listing-cards-section .blog-listing-card-link {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s ease;
}

.blog-listing-cards-section .blog-listing-card-title a:hover,
.blog-listing-cards-section .blog-listing-card-link:hover {
    color: var(--color-primary);
}

.blog-listing-cards-section .blog-listing-pagination {
    margin-top: 80px;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-listing-cards-section .blog-listing-pagination-btn {
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--color-white);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: var(--color-black);
    transition: 0.3s ease;
}

.blog-listing-cards-section .blog-listing-pagination-btn:hover {
    color: var(--color-white);
    background: var(--color-primary);
}

.blog-listing-cards-section .blog-listing-pagination-btn:hover svg path {
    stroke: var(--color-white);
}

.blog-listing-cards-section .blog-listing-pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
}

.blog-listing-cards-section .blog-listing-pagination-page,
.blog-listing-cards-section .blog-listing-pagination-dots {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    padding: 10px 13px;
    border-radius: 8px;
}

.blog-listing-cards-section .blog-listing-pagination-page {
    transition: 0.3s ease;
}

.blog-listing-cards-section .blog-listing-pagination-page:hover,
.blog-listing-cards-section .blog-listing-pagination-page.is-active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1199px) {
    .blog-listing-cards-section .blog-listing-card-content {
        padding: 15px;
    }

    .blog-listing-cards-section .blog-listing-card-title a {
        font-size: 20px;
        line-height: 1.1;
    }
}

@media (max-width: 767px) {
/*     .blog-listing-cards-section .blog-listing-pagination {
        flex-direction: column;
    } */

    .blog-listing-cards-section .blog-listing-pagination-btn {
        font-size: 12px;
        padding: 8px 12px;
        gap: 4px;
    }

    .blog-listing-cards-section .blog-listing-pagination-pages {
        gap: 0;
    }

    .blog-listing-cards-section .blog-listing-pagination-page,
    .blog-listing-cards-section .blog-listing-pagination-dots {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@media (max-width: 575px) {
    .blog-listing-cards-section .blog-listing-card-image {
        aspect-ratio: 1;
    }
}
/* Blog Cards Section End */

/* =========================
   BLOG CARDS CSS END
========================= */




/* =========================
    BLOG DETAIL CSS START
========================= */

.blog-detail-page .blog-detail-hero-image {
    position: relative;
    margin-top: 90px;
    margin-bottom: 115px;
}

.blog-detail-page .blog-detail-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/blog-detail-image.jpg") center/cover no-repeat;
    filter: blur(59.7px);
    transform: scale(1.08);
    opacity: 0.85;
    z-index: 1;
}

.blog-detail-page .blog-detail-hero-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.blog-detail-page .blog-detail-content-wrap {
    padding-top: 22px;
}

.blog-detail-page .blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.blog-detail-page .blog-detail-tag {
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 31px;
    display: inline-flex;
    border: 1.5px solid var(--color-white);
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    color: var(--color-white);
}

.blog-detail-page .blog-detail-tag::before {
    content: "";
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    border-radius: 50%;
    background: var(--color-white);
    margin-right: 7px;
}

.blog-detail-page .blog-detail-meta-text,
.blog-detail-page .blog-detail-meta-dot {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.9;
}

.blog-detail-page .blog-detail-title {
    margin: 0 0 10px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-white);
}

.blog-detail-page .blog-detail-author-label {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
}

.blog-detail-page .blog-detail-author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.blog-detail-page .blog-detail-author-image {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-detail-page .blog-detail-author-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-detail-page .blog-detail-author-name {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-white);
}

.blog-detail-page .blog-detail-author-bio {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-white);
}

.blog-detail-page .blog-detail-author-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.blog-detail-page .blog-detail-author-socials a {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.blog-detail-page .blog-detail-author-socials a:hover {
    background: var(--color-white);
}

.blog-detail-page .blog-detail-author-socials a:hover svg path {
    fill: var(--color-black);
}

.blog-detail-page .blog-detail-article {
    margin-bottom: 70px;
}

.blog-detail-page .blog-detail-article h2,
.blog-detail-page .blog-detail-article h3,
.blog-detail-page .blog-detail-article h4,
.blog-detail-page .blog-detail-article h5,
.blog-detail-page .blog-detail-article h6 {
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.2;
}

.blog-detail-page .blog-detail-article h2 {
    margin: 0 0 16px;
    font-size: 27px;
    line-height: 1.4;
}

.blog-detail-page .blog-detail-article h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.blog-detail-page .blog-detail-article h4 {
    margin: 0 0 12px;
    font-size: 22px;
}

.blog-detail-page .blog-detail-article h5 {
    margin: 0 0 10px;
    font-size: 20px;
}

.blog-detail-page .blog-detail-article h6 {
    margin: 0 0 10px;
    font-size: 18px;
}

.blog-detail-page .blog-detail-article p,
.blog-detail-page .blog-detail-article li {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 35px;
}

.blog-detail-page .blog-detail-article p:last-child,
.blog-detail-page .blog-detail-article li:last-child {
    margin-bottom: 0;
}

.blog-detail-page .blog-detail-article ul,
.blog-detail-page .blog-detail-article ol {
    margin: 0 0 35px;
    padding-left: 24px;
}

.blog-detail-page .blog-detail-article ul {
    list-style: disc;
}

.blog-detail-page .blog-detail-article ol {
    list-style: decimal;
}

.blog-detail-page .blog-detail-article li {
    margin-bottom: 12px;
}

.blog-detail-page .blog-detail-bottom {
    padding-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-detail-page .blog-detail-bottom-title {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color-white);
}

.blog-detail-page .blog-comment-item.is-hidden-comment {
    display: none;
}

.blog-detail-page .popular-comments-text {
    margin: 0 0 27px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-white);
}

.blog-detail-page .read-more-comments a {
    margin: 0 0 27px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
}

.blog-detail-page .blog-comments-block,
.blog-detail-page .blog-comment-form-block {
    height: 100%;
}

.blog-detail-page .blog-comments-item-wrapper {
    width: 100%;
    height: 480px;
    overflow-y: auto;
}

.blog-detail-page .blog-comment-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid #B2B2B2;
}

.blog-detail-page .blog-comment-item:last-of-type {
    border-bottom: 0;
}

.blog-detail-page .blog-comment-item:first-of-type {
    padding-top: 0;
}

.blog-detail-page .blog-comment-item .blog-comment-content {
    padding-right: 15px;
}

.blog-detail-page .blog-comment-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-detail-page .blog-comment-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-detail-page .blog-comment-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.blog-detail-page .blog-comment-name {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-white);
}

.blog-detail-page .blog-comment-date {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
}

.blog-detail-page .blog-comment-text {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-white);
}

.blog-detail-page .blog-comment-reply {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-white);
}

.blog-detail-page .blog-comment-reply:hover {
    color: var(--color-primary);
}

.blog-detail-page .blog-comment-form-subtitle {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #BFBFBF;
}

.blog-detail-page .blog-comment-form input,
.blog-detail-page .blog-comment-form textarea {
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    box-shadow: none;
    background: #1C2025;
    border-radius: 4px;
    padding: 0 16px;
    font-size: 14px;
    font-family: 'Gilroy', sans-serif;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-white);
}

.blog-detail-page .blog-comment-form input::placeholder,
.blog-detail-page .blog-comment-form textarea::placeholder {
    color: var(--color-white);
    opacity: 1;
}

.blog-detail-page .blog-comment-form input:focus,
.blog-detail-page .blog-comment-form textarea:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

.blog-detail-page .blog-comment-form input {
    height: 52px;
}

.blog-detail-page .blog-comment-form textarea {
    height: 210px;
    resize: none;
    padding-top: 14px;
}

.blog-detail-page .blog-comment-submit-btn {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.blog-detail-page .blog-comment-submit-btn:hover {
    background: #1399cd;
}

@media (max-width: 1399px) {
    .blog-detail-page .blog-detail-hero-image {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .blog-detail-page .blog-detail-tag {
        min-height: 30px;
        padding: 4px 10px;
        font-size: 18px;
    }

    .blog-detail-page .blog-detail-meta-text,
    .blog-detail-page .blog-detail-meta-dot {
        font-size: 18px;
    }

    .blog-detail-page .blog-detail-title {
        font-size: 38px;
    }

    .blog-detail-page .blog-detail-author-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }

    .blog-detail-page .blog-detail-article p,
    .blog-detail-page .blog-detail-article li {
        margin-bottom: 20px;
    }

    .blog-detail-page .blog-detail-article ul,
    .blog-detail-page .blog-detail-article ol {
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .blog-detail-page .blog-detail-meta {
        gap: 10px;
    }

    .blog-detail-page .blog-detail-tag::before {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    .blog-detail-page .blog-detail-title {
        font-size: 32px;
    }

    .blog-detail-page .blog-detail-author-label {
        font-size: 18px;
    }

    .blog-detail-page .blog-detail-author-name {
        font-size: 22px;
        margin: 0 0 4px;
    }

    .blog-detail-page .blog-detail-article {
        margin-bottom: 40px;
    }

    .blog-detail-page .blog-detail-article h2 {
        margin: 0 0 10px;
        font-size: 24px;
    }

    .blog-detail-page .blog-detail-article h3 {
        font-size: 22px;
    }

    .blog-detail-page .blog-detail-article h4 {
        font-size: 20px;
    }

    .blog-detail-page .blog-detail-article h5 {
        font-size: 18px;
    }

    .blog-detail-page .blog-detail-article h6 {
        font-size: 16px;
    }

    .blog-detail-page .blog-detail-article p,
    .blog-detail-page .blog-detail-article li {
        font-size: 18px;
        line-height: 1.5;
    }

    .blog-detail-page .blog-detail-bottom {
        padding-top: 40px;
    }

    .blog-detail-page .blog-detail-bottom-title {
        font-size: 25px;
    }

    .blog-detail-page .popular-comments-text {
        font-size: 16px;
    }

    .blog-detail-page .blog-comment-item {
        padding: 20px 0;
        gap: 15px;
    }

    .blog-detail-page .blog-comment-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
    }

    .blog-detail-page .blog-comment-text {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .blog-detail-page .blog-detail-hero-image {
        margin-top: 18px;
    }

    .blog-detail-page .blog-detail-content-wrap {
        padding-top: 18px;
    }

    .blog-detail-page .blog-detail-article p,
    .blog-detail-page .blog-detail-article li {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .blog-detail-page .blog-detail-article ul,
    .blog-detail-page .blog-detail-article ol {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .blog-detail-page .blog-detail-article li {
        margin-bottom: 10px;
    }

    .blog-detail-page .blog-comment-form-block {
        margin-top: 40px;
    }

    .blog-detail-page .blog-comment-form input {
        height: 46px;
    }

    .blog-detail-page .blog-comment-form textarea {
        height: 150px;
    }
}

@media (max-width: 767px) {
    .blog-detail-page .blog-detail-hero-image {
        margin-top: 14px;
        margin-bottom: 10px;
    }

    .blog-detail-page .blog-detail-content-wrap {
        padding-top: 16px;
    }

    .blog-detail-page .blog-detail-meta {
        margin-bottom: 10px;
        gap: 7px;
    }

    .blog-detail-page .blog-detail-tag::before {
        width: 15px;
        height: 15px;
        min-width: 15px;
        min-height: 15px;
    }

    .blog-detail-page .blog-detail-meta-text,
    .blog-detail-page .blog-detail-meta-dot {
        font-size: 16px;
    }

    .blog-detail-page .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-page .blog-detail-author-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }

    .blog-detail-page .blog-detail-author-name {
        font-size: 20px;
    }

    .blog-detail-page .blog-detail-author-bio {
        font-size: 16px;
    }

    .blog-detail-page .blog-detail-article h2 {
        font-size: 22px;
    }

    .blog-detail-page .blog-detail-article h3 {
        font-size: 20px;
    }

    .blog-detail-page .blog-detail-article h4 {
        font-size: 18px;
    }

    .blog-detail-page .blog-detail-article h5 {
        font-size: 16px;
    }

    .blog-detail-page .blog-detail-article h6 {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .blog-detail-page .blog-detail-author-bio {
        font-size: 14px;
    }
}

/* =========================
    BLOG DETAIL CSS END
========================= */





/* =========================
   FOOTER CSS START
========================= */
.site-footer {
    padding-bottom: 130px;
    padding-top: 250px;
    position: relative;
}

.site-footer .footer-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #01A8E7;
    opacity: 0.25;
    filter: blur(300px);
    border-radius: 27px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.site-footer .footer-inner {
    position: relative;
    z-index: 2;
    border-top: 1px solid #3F5060;
    padding-top: 100px;
}

.site-footer .footer-top-links {
    display: flex;
    align-items: center;
    gap: 46px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.site-footer .footer-top-links a {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    transition: 0.3s ease;
}

.site-footer .footer-top-links a:hover {
    color: var(--color-primary);
}

.site-footer .footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 42px;
}

.site-footer .footer-socials a {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer .footer-main-row {
    align-items: center;
}

.site-footer .footer-brand-block {
    padding-right: 30px;
}

.site-footer .footer-logo {
    display: inline-block;
    margin-bottom: 28px;
}

.site-footer .footer-logo img {
    width: 186px;
}

.site-footer .footer-desc {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-white);
}

.site-footer .footer-app-block {
    text-align: start;
}

.site-footer .footer-app-block h3 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-white);
}

.site-footer .footer-app-block p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-white);
}

.footer-store-btns {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-store-btns .store-btn {
    display: inline-block;
}

.footer-store-btns .store-btn img {
    height: 42px;
    width: auto;
    display: block;
}

@media (max-width: 1399px) {
    .site-footer {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .site-footer .footer-inner {
        padding-top: 80px;
    }
}

@media (max-width: 991px) {
    .site-footer .footer-top-links {
        margin-bottom: 20px;
        gap: 20px;
    }

    .site-footer .footer-socials {
        justify-content: flex-start;
        margin-bottom: 28px;
    }

    .site-footer .footer-brand-block {
        padding-right: 0;
    }

    .site-footer .footer-app-block {
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .site-footer .footer-inner {
        padding-top: 50px;
    }

    .site-footer .footer-logo img {
        width: 150px;
    }

    .site-footer .footer-desc {
        font-size: 15px;
        line-height: 22px;
    }

    .site-footer .footer-app-block h3 {
        font-size: 22px;
    }

    .footer-store-btns {
        gap: 12px;
    }

    .footer-store-btns .store-btn img {
        height: 38px;
    }
}
/* =========================
   FOOTER CSS END
========================= */



/* =========================
   404 PAGE CSS START
========================= */
.error-404-page {
    position: relative;
    background: var(--body-color);
    padding-top: 220px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.error404 .site-footer {
    padding-top: 0;
}

.error-404-page::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: rgba(1, 168, 231, 0.28);
    filter: blur(160px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.error-404-page .error-404-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.error-404-page .section-subtitle {
    color: var(--color-white);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.error-404-page .section-title {
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(80.76deg, #FFFFFF 19.75%, #8DE0F8 55.95%, #FFFFFF 87.95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-404-page .section-content {
    color: var(--color-white);
    max-width: 720px;
    margin: 0 auto 35px;
}

.error-404-page .error-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-page .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 18px 40px;
    border: 0;
    border-radius: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: 0.3s ease;
    box-shadow: 0 0 35px rgba(1, 168, 231, 0.35);
}

.error-404-page .theme-btn:hover {
    color: var(--color-white);
    background: #1399cd;
}

@media (max-width: 1199px) {
    .error-404-page {
        padding-top: 180px;
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .error-404-page {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: 80vh;
    }

    .error-404-page .theme-btn {
        min-height: 52px;
        padding: 16px 30px;
    }
}

@media (max-width: 767px) {
    .error-404-page {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .error-404-page::before {
        width: 420px;
        height: 420px;
        filter: blur(100px);
    }

    .error-404-page .section-content {
        margin-bottom: 24px;
    }

    .error-404-page .theme-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =========================
   404 PAGE CSS END
========================= */
