:root {
    /* --primary-bg-color: #182744; */
    --primary-bg-color: #030e32;
    --section-padding: 80px 0;
    --white-color: #fff;
    --site-color-1: #02928f;
    --site-color-2: #18B0A5;
    --menu-nav-bd-color: #2A3F5F;
    --bs-nav-link-color: #fff;
    --time-line-item-color: #b2dfdb;
    --bs-breadcrumb-divider-color: #2A3F5F;
    --font-family: Poppins, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-p-gray-color: #666;
    --section-title-p-font-size: 1rem;
    --icon-color: #008171; /*008171  00364c*/
    --icon-color-accent: #18B0A5;
    --icon-color-muted: #02928f;
    --icon-color-hover: #00364c;
    --feature-card-p-font-size: 14px;
    --warn-note-color: #16aca4;
    --btn-primary-bg-color: #182744;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Helvetica Neue', Arial, sans-serif; */
    font-family: Poppins, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;

}

/* Header Styles 0b2126*/
.header {
    background-color: var(--primary-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /* height: 32px; */
    height: 58px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0px;
}


.nav-item {
    margin: 0 15px;
    /* position: relative; */
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}
.nav-link a {
    color: #fff;
}

.nav-link:hover {
    color: #4ecdc4;
}

.nav-link:not(:hover) {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4ecdc4;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.white_bg_nav_link{

}
.white_bg_nav_link::after{
    background-color: var(--site-color-1);
}

/*begin sub nav dropdown list*/
.container-fluid {
    margin: 0;
    padding: 0;
}

.container-fluid .row {
    margin: 0;
    padding: 0;
}

.dropdown-menu {
    display: none;
}

.nav-item.dropdown,
.nav-item.dropdown,
.nav-item.dropleft,
.nav-item.dropright,
.nav-item.dropup {
    position: static;
}

.dropdown:hover>.dropdown-menu {
    display: block;

}

.megamenu .dropdown-menu {
    border: none;
    width: 100%;
    left: 0;
    padding-top: 18px;
}

.dropdown-menu-bg {
    background-color: var(--primary-bg-color);

}

.dropdown-menu-bd {
    border-top: 1px solid #2A3F5F;
    /* #3D6E82; #2A3F5F;*/
    /* border-bottom: 1px solid #009B8A; */
}

.row.megamenu-panel-content-row {
    max-width: 1200px;
    margin: 0 auto;
}

.megamenu-panel-content-left {
    min-height: 430px;
    border-right: 1px solid #2A3F5F;
    /* padding-left: 100px; */
    padding-left: 30px;
    padding-top: 40px;
}

.megamenu-panel-title {
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0 0 16px;
    font-size: 1.2rem;
}

.megamenu-panel-content-right li {
    padding: 12px 0;
    letter-spacing: .2px;
    border-bottom: 1px dashed #2A3F5F;
    width: 70%;
}

.megamenu-panel-content-right .nav-link {
    display: inline;
}

.megamenu-overview-link {
    font-size: 1rem;
}

.megamenu-overview-link a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.megamenu-overview-link a:hover {
    color: #4ecdc4;
}

/* .megamenu-panel-content-right .nav-link:hover{
            display: inline;
        } */

/*end sub nav dropdown list*/

.header-actions {
    display: flex;
    align-items: center;
}

.language-selector {
    position: relative;
    margin-left: 20px;
}

.language-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.language-btn i {
    margin-left: 5px;
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-top: 5px;
    min-width: 120px;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.language-dropdown a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
}

.language-dropdown a:hover {
    background-color: #f5f5f5;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    background-color: var(--primary-bg-color);
    color: white;
    padding-top: 0px;
    padding-bottom: 5px;
    /* padding: 120px 0 100px; */
    padding: 0px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 670px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 12;

    /*new */
    flex: 1;
    margin-top: -2rem; 
    padding-top: 0; 
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 620px;
    line-height: 1.6;
    /* font-family: "Garamond", Sans-serif; */
}

.hero p {
    font-size: 1.2rem;
    max-width: 500px;
    /* margin-bottom: 40px; */
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-content-p-min-h{
    min-height: 200px;
    /* min-height: 220px; */
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero p.hero-content-left-note {
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 13.333px;
    line-height: normal;
}

.download-group-btn {
    width: 512px;
    border: 1px solid var(--menu-nav-bd-color);
    border-radius: 8px;
}

.hero-pc-downloads a{
    font-size: 1rem;
    padding: 3px 8px;
    height: 2.1rem;
    background-color:#16aca4; 


    /* border: 1px solid var(--time-line-item-color);
    background-color: var(--primary-bg-color);
    color: var(--time-line-item-color)； */
}
.hero-pc-downloads a:hover {
    color: #fff;
    background-color: #16aca4; */
      /*background-color: var(--site-color-1); */
}

/*video svg */
.hero-container {
    width: 100%;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    min-height: 463px;
    /*new*/
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 1rem;
}

.hero-vedio-block {
    position: absolute;
    top: 0;
    left: auto;
    bottom: 0;
    right: 0;
    z-index: 10;
    /* margin-top: -2.5rem; */
    width: 50%;
    /* padding-top: 6rem */
    /* padding-left:6rem; */
    padding-left: 2rem;
    /*new*/
    flex: 1;
    margin-top: 1rem; 
    padding-top: 0.5rem;

}

/* .hero-vedio-block-svg{
            max-width:640px;
            width: 597px;
            padding: 0;
        } */
.translate-x-0 {
    transform: translateX(0px);
}

.translate-y-5 {
    transform: translateY(1.5rem);
}

.-translate-x-6 {
    transform: translateX(-1.5rem);
}

.hero-vedio-block-hw {
    position: absolute;
    width: 24rem;
    height: 480px;
    top: 0;
    bottom: 0;
    /* right: 0;
            left: 0; */
}

.hero-vedio-block-bg {
    --tw-bg-opacity: 1;
    /* background-color:rgb(0 212 193/var(--tw-bg-opacity)) */
    background-color: #18B0A5;
}

.hero-vedio-block-svg {
    max-width: 450px;
    width: 450px;
    padding: 0;
}

.hero-vedio-block-bg-svg {
    position: absolute;
    height: 0;
    width: 0;
}

.hero-vedio-block-svg video {
    /* width: 100%;
            height: 500px; */
    /* width: 380px; */
    width: 568px;
    max-width: 580px;
    height: 480px;
    object-fit: cover;
}

.hero-img-backslash-60 {
    /* clip-path: polygon(31% 0, 80% 0, 48% 100%, 0% 100%); */
    clip-path: polygon(35% 0, 67% 0, 34% 100%, 0% 100%);
}

.hero-img-backslash-r40 {
    /* clip-path: polygon(31% 0, 80% 0, 48% 100%, 0% 100%); */
    clip-path: polygon(55% 49%, 71% 9%, 100% 100%, 70% 100%);
}

.video-wrapper {
    clip-path: url(#aSvgShape);
    /* position: absolute; */
}


/*video  */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* 底层 */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持比例覆盖容器 */
}

.hero-content-left {
    float: left;
}

.hero-content-right {
    float: left;
    max-width: 600px;
    text-align: center;
}

.hero-content-right img {
    width: 90%;
}

/* 文字内容层 */
.hero-content-text-1 {
    position: relative;
    z-index: 2;
    /* 顶层 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem;
    /* text-align: center; */
    color: white;
    /* 文字颜色 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);

    /* 响应式布局 */
    display: flex;
    flex-direction: column;
    /* justify-content: center;
            align-items: center; */
    height: 100%;
}

/* 遮罩层增强文字对比度 */
.video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* 半透明黑色遮罩 */
    z-index: 1.5;
    /* 介于视频和文字之间 */
}


.btn-primary {
    background-color: #4ecdc4;
    background-color: #16aca4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #3bb4ac;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* breadcrumb */
.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px 20px 100px; */
    padding: 20px 20px 60px;
    z-index: 12;
}

.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item::before {
    color: var(--menu-nav-bd-color);
    font-weight: 900;
}

.breadcrumb-item:not(:last-child)::after {
    /* content: "›"; */
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    /* font-weight: bold; */
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    /* font-weight: 500; */
}

.breadcrumb-link:hover {
    /* color: #4ecdc4; */
    /* background-color: rgba(255, 255, 255, 0.1); */
    transform: translateY(-1px);
    /* text-decoration: underline; */
}

.breadcrumb-link i {
    margin-right: 8px;
    font-size: 14px;
}

.breadcrumb-item.active span {
    color: #fff;
    /* font-weight: 600; */
    padding: 8px 12px;
}

/* breadcrumb responsive */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 15px 15px 0;
    }

    .breadcrumb-list {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }

    .breadcrumb-link {
        padding: 6px 8px;
    }

    .breadcrumb-link i {
        margin-right: 6px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-container {
        padding: 10px 10px 0;
    }

    .breadcrumb-list {
        font-size: 11px;
    }

    .breadcrumb-link span {
        display: none;
    }

    .breadcrumb-link i {
        margin-right: 0;
    }

    .breadcrumb-item.active span {
        display: inline;
    }
}



/*Section Common*/
.section-ptb-80 {
    padding: 80px 0;
}
.section-ptb-80-limit-height {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
    min-height: 80vh;
}
.section-bg-white {
    background-color: #ffffff;
}
.section-bg-primary {
    background-color: var(--primary-bg-color);
    /* color: white; */
    /* color:var(--time-line-item-color) */
    color: var(--white-color);
}
/* .section-bg-primary h2{
    color: #fff;
} */

.feature-card p{
    font-size: var(--feature-card-p-font-size);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    /* font-family: "Garamond", Sans-serif; */
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    /* color: var(--primary-bg-color); */
    /* font-family: "Garamond", Sans-serif; */
}

.section-title-primary-h2{
     color: var(--primary-bg-color);
}
.section-title-p-normal-color {
    color: #666;
}

.section-title p {
    font-size: var(--section-title-p-font-size);
    max-width: 600px;
    margin: 0 auto;
    /* color: #666; */
}


.section-title p.mxw900{
    max-width: 900px;
}

.section-grid-2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-grid-item-text {
    border-radius: 8px;
    overflow: hidden;
}

/* section-grid-item-text-col-center {
    justify-self: center;
   
} */
.justify-self-center {
    justify-self: center;
}

.section-grid-item-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-grid-item-text p {
    /* font-size: 1.1rem;
            margin-bottom: 30px; */
    opacity: 0.9;
}

.section-grid-item-image,
.section-grid-item-image-carousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-grid-item-image img {
    width: 100%;
    height: auto;
    display: block;
}


.mg_t_b_8 {
    margin: 8px 0;
}
.mt-10{
    margin-top: 10px;
}
.mb-10{
    margin-bottom: 10px;
}
.mr-10{
    margin-right: 10px;
}
.ml-10{
    margin-left: 10px;
}

.mt-15{
    margin-top: 15px;
}
.mb-15{
    margin-bottom: 15px;
}

.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}



.mr-15{
    margin-right: 15px;
}
.ml-15{
    margin-left: 15px;
}
.pl-15 {
    padding-left: 15px;
}
.pt-15 {
    padding-top: 15px;
}
.pr-15 {
    padding-right: 15px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pt-30 {
    padding-top: 30px;
}
.pl-30 {
    padding-left: 30px;
}
.pt-48 {
    padding-top: 48px;
}
.pl-48 {
    padding-left: 48px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-60 {
    margin-top: 60px;
}
.mb-60   {
    margin-bottom: 60px;
}
.ml-60{
    margin-left: 60px;
}
.pt-0{
    padding-top: 0;
}
.pb-0{
    padding-bottom: 0;
}
.mt-80 {
    margin-top: 80px;
}
.mb-80 {
    margin-bottom: 80px;
}

.mt-100 {
    margin-top: 100px;
}
.mb-100 {
    margin-bottom: 100px;
}
.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.grid-3-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.grid-item {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    text-align: center; */
}

.grid-item-icon {
    /* width: 1.2em; */
    height: 1.2rem;
    /* background-color: #fff; */
    /* border-radius: 50%; */
    /* color: #155885; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    /* margin: auto; */
}

.grid-item img {
    width: 24px;
    height: 24px;
}

.grid-item-text {
    text-align: left;
    /* color: #fff; */
}

.grid-item-text-white {
    color: var(--white-color);
    /* color: var(--time-line-item-color); */
}

.grid-item-text-primary {
    color: var(--primary-bg-color);
}

.grid-item-text h3 {
    font-size: 1.2rem;
    /* color: #182744; */
    /* color: #fff; */
    /* margin: 20px 0px; */
    /* margin-top: 10px;
    height: 1.8rem; */
}

.grid-item-text p {
    letter-spacing: 0;
    padding-right: 20px;
}


/**
 * Section 2 Columns
 */
.section-2-cols{

}
.section-2-cols-h2 {
    margin-bottom: 60px;
    text-align: center;
    font-size: 2.5rem;
    /* margin-bottom: 15px; */
    /* color: #182744; */
    /* font-family: "Garamond", Sans-serif; */
}

.section-2-cols-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-2-cols-text {
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.section-2-cols-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    /* font-family: "Garamond", Sans-serif; */
}

.section-2-cols-text p {
    /* font-size: 1.1rem;
            margin-bottom: 30px; */
    opacity: 0.9;
}

.section-2-cols-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-2-cols-image img {
    width: 100%;
    height: auto;
    display: block;
}


/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
  font-size: 48px;
  display: block;
  /* color: #68A4C4; */
  color: var(--primary-bg-color);
}

.facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  /* font-family: "Roboto", sans-serif; */
  font-size: 14px;
}


/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

/* About Section */
.about {
    padding: 80px 0;
    /* background-color: #182744;
            color: white; */
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-bg-color);
    /* font-family: "Garamond", Sans-serif; */
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/*left img*/
.long-term {
    padding: 80px 0;
    background-color: var(--primary-bg-color);
    color: white;
} 
.long-term-h2 {
    margin-bottom: 60px;
    text-align: center;
    font-size: 2.5rem;
    /* margin-bottom: 15px; */
    /* color: #182744; */
    /* font-family: "Garamond", Sans-serif; */
}

/*left image section*/
.left-image-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.long-term-text {
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.long-term-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    /* font-family: "Garamond", Sans-serif; */
}

.long-term-text p {
    /* font-size: 1.1rem;
            margin-bottom: 30px; */
    opacity: 0.9;
}

.long-term-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.long-term-image img {
    width: 100%;
    height: auto;
    display: block;
}


.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

.custom-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
}

.block-section {
    background-color: var(--primary-bg-color);
    color: #fff;
    padding-top: 0px;
}

.values {
    padding: 20px 0 80px 0;
    /* background-color: #ffffff; */
    background-color: var(--primary-bg-color);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.we-offer h2 {
    color: #fff;
}

.we-offer p {
    color: #fff;
    max-width: 700px;
}

.benefits-item {
    margin-bottom: 30px;
}

.benifit-item-icon {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    /* color: #155885; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    /* margin: auto; */
}

.benifit-item-icon img {
    width: 24px;
    height: 24px;
}

.benifit-item-text {
    text-align: left;
    color: #fff;
}

.benifit-item-text h3 {
    font-size: 1.2rem;
    /* font-size: 18px; */
    /* color: #182744; */
    color: #fff;
    /* margin: 20px 0px; */
    margin-top: 10px;
    height: 1.8rem;
}

.benifit-item-text h4 {
    font-size: 18px;
}

.benifit-item-text p {
    letter-spacing: 0;
    padding-right: 20px;
}

.grid-5-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}


.grid-2-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}


.benifit-item-text .ft-blk {
    color: #000;
}

.benifit-item-text h3.ft-blk {
    color: #000;
}

.technology_section {
    background-color: #ffffff;
    padding: 80px 0;
}

.use-cases {
    background-color: #ffffff;
    /* padding: 80px 0;
            background-color: #182744; */
    color: #000;
}


.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-contract-form {
    padding: 20px;
}

/* .feature-contract-form .form-row, */
.feature-contract-form .form-group {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-bg-color);
}

@media (max-width: 768px) {
    .grid-5-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-5-columns {
        grid-template-columns: 1fr;
    }
}



.our-service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}



.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: block;
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a3a52;
    font-weight: 500;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/*our service*/
.our-service {
    padding: 80px 0 80px 0;
    background-color: #ffffff;
    /* color: #000; */
}

.our-service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-service-desc {
    max-width: 900px;
    margin: 0 auto;
}

.our-service-desc p {
    max-width: 900px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
    gap: 40px;
    margin-top: 40px;
}


.services-grid-6{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
    gap: 40px;
}


.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-radius{
    border-radius: 8px;
}
.service-card-radius img{
    border-radius: 8px;
}


.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-header-img{
    width: 100%;
    height: 120px;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: block;
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a3a52;
    font-weight: 500;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

.service-item-link a{
    color: var(--primary-bg-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.service-item-content-p{
    min-height: 75px;
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
}
.faq-content {
  margin-top: 2rem;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  color: #1a3a52;;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-answer p {
  color: var(--font-p-gray-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.detail-item {
  margin-bottom: 1.5rem;
}
.detail-item p {
  color: var(--font-p-gray-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-title {
  color: #1a3a52;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  text-align: center;
  margin-bottom: 1rem;
}

/* .feature-icon i {
  font-size: 2.5rem;
  color: var(--primary-bg-color);
} */

.feature-title {
  color: #1a3a52;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.4;
}

.feature-list li i {
  /* color: #28a745; */
  color: var(--icon-color);
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .faq-title {
    font-size: 2rem;
  }
}

.footer {
    background-color: var(--primary-bg-color);
    color: white;
    padding: 60px 0 10px;

}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    /* color: #fff; */
    color: #4ecdc4;
    /* color: #f584e5; */
    /* font-family: "Garamond", Sans-serif; */
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding-left: 0px;
}


.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.8em;
}

.footer-links a:hover {
    color: #f584e5;
}

.footer_bottom_brand {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 60%;
    margin: auto;
    margin-bottom: 40px;
}

.brand-logo {
    /* background: white;   */
    border-radius: 8px;
    padding: 5px;
    text-align: center;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1);   */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* .brand-logo:hover {  
            transform: translateY(-10px);  
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);  
        }   */

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: filter 0.3s ease;
}

.brand-logo:hover img {
    opacity: 1;
    filter: grayscale(0);
}

/* .brand-name {  
            margin-top: 15px;  
            font-weight: 600;  
            color: #333;  
        }   */

.footer-bottom {
    max-width: 1200px;
    margin:  20px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-bg-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        margin: 10px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer_bottom_brand {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

}

.bg_1 {
    background-color: #02928f;
}

.bg_2 {
    background-color: #18B0A5;
}


 .social-links a {
    font-size: 14px;
    display: inline-block;
    /* background: #1e4356; */
    color: #fff;
    line-height: 1;
    padding: 5px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 24px;
    height: 24px;
    transition: 0.3s;
    text-decoration: none;
}

 .social-links a{
    background: var(--bs-breadcrumb-divider-color);
 }

.social-links a:hover {
  /* background: #68A4C4; */
  background: var(--site-color-2);
  color: #fff;
  text-decoration: none;
}

.footer_bottom_copy {
    font-size: 14px;
}

 @media (max-width: 768px) {
        .hero-container {
            flex-direction: column;
            gap: 1rem;
            padding-top: 0.5rem;
        }
        
        .hero-content {
            margin-top: 0;
            order: 1; 
        }
        
        .hero-vedio-block {
            margin-top: 1rem;
            order: 2; 
            padding-top: 0.5rem;
        }
}

h4.sign-up-h4{
    font-size: 1.2rem;
}

/* 图标基础样式 */
.icon {
    color: var(--icon-color);
    transition: color 0.3s ease;
}

/* 活跃状态图标 */
.icon.active {
    color: var(--icon-color-accent);
}

/* 次要图标 */
.icon.secondary {
    color: var(--icon-color-muted);
}

/* 图标悬停效果 */
.icon:hover {
    color: var(--icon-color-hover);
}

      
.service-card-primary-bg .icon:hover{
  color: var(--icon-color);
}



.fa-2x.icon {
    margin-bottom: 15px;
}

/* .hero-pc-downloads .blue-btn-bd-white {
        background-color: var(--btn-primary-bg-color);
        border: 1px solid var(--menu-nav-bd-color);
        color: var(--time-line-item-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

.hero-pc-downloads .blue-btn-bd-white:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        background-color: var(--site-color-1);
 } */


       .service-card-primary-bg {
        background-color: var(--primary-bg-color);
      }

      .service-card-bd-white {
        border: 1px solid var(--menu-nav-bd-color);
      }

      .service-card-bd-white h4,
      .service-card-bd-white h5 {
        color: var(--white-color);
        /* color: var(--time-line-item-color); */
        z-index: 2;
        position: relative;
      }

      .service-card-bd-white p {
         color: var(--white-color);
        /* color: var(--time-line-item-color); */
        z-index: 2;
        position: relative;
      }

      .service-card-bd-white::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
        border-radius: 14px;
        pointer-events: none;
      }

      .service-card-bd-white:hover {
        transform: translateY(-8px);
        border-color: rgba(59, 130, 246, 0.5);
        box-shadow:
          0 20px 40px rgba(0, 30, 120, 0.4),
          0 0 0 1px rgba(59, 130, 246, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.15);
      }

      .service-card-bd-white:hover::before {
         opacity: 0.2;
      }

      .service-card-bd-white:hover::after {
        opacity: 0.2;
      }

    .blue-btn-bd-white {
        background-color: var(--primary-bg-color);
        border: 1px solid var(--menu-nav-bd-color);
        color: var(--time-line-item-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .blue-btn-bd-white:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        background-color: var(--site-color-1);
      }

      .bd-botom-nav-color {
        border-bottom: 1px solid var(--menu-nav-bd-color);
      }
