: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;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

* {
    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;

}

.site_color_1 {
    color: #02928f;
}

.site_color_2 {
    color: #18B0A5;
}


/* 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:focus{
            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%;
}

/*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;
}

@media (min-width: 940px) {
    .hero-small-text p {
        font-size: 22px;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 12;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 800px;
    line-height: 1.6;
    /* font-family: "Garamond", Sans-serif; */
}

.about-hero h1 {
    max-width: 1000px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    /* display: flex; */
    gap: 15px;
    margin: 0 auto;
    margin-top: 160px;
}

.hero-content-center {
    text-align: center;
    max-width: 1000px;
    width: 1000px;
    margin: 0 auto;
    ;
}

.hero p.hero-content-left-note {
    font-size: 0.9rem;
}

.hero-small-text {
    margin: 0 auto 40px;
}

.hero-small-text p {
    font-size: 22px;
    font-style: italic;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.7;
    margin: 0 auto;
    /* max-width: 1000px; */
     max-width: 990px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 13.333px;
    line-height: normal;
}


/*video svg */
.hero h1 .js-rotating {
    display: inline-block;
    /* font-size: 0.65em; */
}

/* Morphext rotating text animation */
.morphext>span {
    display: none;
}

.morphext>.animated {
    display: inline-block;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

.flipInX {
    animation-name: flipInX;
    backface-visibility: visible !important;
}

/*video  */
.btn-primary {
    background-color: #18aae0;
    color: white;
    padding: 10px 24px;
    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: 8px 20px;
    border: 1px solid white;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: transparent;
}

.btn-secondary:hover {
    /* background-color: rgba(255, 255, 255, 0.1); */
    background-color: #fff;
    color: var(--primary-bg-color);
}

/* breadcrumb */
.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 100px;
    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-bg-white {
    background-color: #ffffff;
}
.section-bg-primary {
    background-color: var(--primary-bg-color);
    color: white;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-title-primary-h2{
     color: var(--primary-bg-color);
}
.section-title-p-normal-color {
    color: #666;
}
.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.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;
}

.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;
}
.pt-30 {
    padding-top: 30px;
}
.pl-30 {
    padding-left: 30px;
}
.pt-48 {
    padding-top: 48px;
}
.pl-48 {
    padding-left: 48px;
}
.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;
}

.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: 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; */
}

.grid-item img {
    width: 24px;
    height: 24px;
}

.grid-item-text {
    text-align: left;
    /* color: #fff; */
}

.grid-item-text-white {
    /* color: var(--time-line-item-color); */
    color: var(--white-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;
}


/*--------------------------------------------------------------
# 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 */

.mission-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.mission-box h3 {
    margin-bottom: 30px;
    margin-top: 10px;
    /* font-family: "Garamond", Sans-serif; */
}

.about {
    padding: 80px 0;
    background-color: var(--primary-bg-color);
    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;
    /* 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 p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.long-term-h2 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 2.5rem;
    /* margin-bottom: 15px; */
    /* color: #182744; */
    /* font-family: "Garamond", Sans-serif; */
}

.tabs-contents {
    max-width: 1200px;
    margin: 0 auto;
}


.long-term-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;
}

/*tabs style*/
.link-tabs {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.link-tabs .nav-link {
    color: #007bff;
    border: none;
    padding: 0.5rem 1.5rem;
    margin-right: 1rem;
    background: transparent;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 0;
}

.link-tabs .nav-link:hover {
    color: #0056b3;
    background: transparent;
    text-decoration: underline;
}

.link-tabs .nav-link.active {
    color: #495057;
    background: transparent;
    border: none;
    font-weight: 500;
}

.link-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #495057;
}

.tab-content {
    padding: 1.5rem 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.card {
    /* border: 1px solid rgba(0,0,0,.125);
            border-radius: 0.375rem;
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); */
    border: none;
    background-color: var(--primary-bg-color);
}

.tab-content .p_bg_w {
    color: #fff;
    ;
    margin: 0;
}

.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: "✓";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
}

.block-section {
    background-color: var(--primary-bg-color);
    color: #fff;
    padding-top: 0px;
}

/*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: 40px;
    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: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; */
    width: 36px;
    height: 36px;
    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;
}



.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;
    /* color: #182744; */
    color: #fff;
    /* margin: 20px 0px; */
    margin-top: 10px;
    height: 1.8rem;
}

.benifit-item-text p {
    letter-spacing: 0;
    padding-right: 20px;
}

.grid-5-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.grid-4-columns {
    display: grid;
    grid-template-columns: repeat(4, 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;
}

.bg_section {
    background-color: var(--primary-bg-color);
}

.bg_section_font h2,
.bg_section_font p {
    color: #fff;
}

.use-cases {
    background-color: #ffffff;
    /* padding: 80px 0;
            background-color: #182744; */
    color: #000;
}

.title_p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.feature-card {
    /* background: #f8f9fa; */
    /* background: #18B0A5; */
    /* background-color: #F9F7FC; */
    /* background: radial-gradient(101% 80% at -1.3% 97.3%, rgba(227, 225, 252, 0.77) 100%); */
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    /* border-top: 4px solid #4ecdc4; */

}

/* .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        } */


.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px; */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.features-grid_2 {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px; */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-contract-form {
    padding: 20px;
}

/* .feature-contract-form .form-row, */
.feature-contract-form .form-group {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .grid-5-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-5-columns {
        grid-template-columns: 1fr;
    }
}

.news {
    padding: 80px 0;
    background-color: #ffffff;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.news-grid-4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #4ecdc4;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-bg-color);
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
}

.news-link {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.news-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.news-link:hover i {
    transform: translateX(5px);
}

.features-grid-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    background-color: #fff;
}

.feature-contract-form {
    padding: 20px;
}

/* .feature-contract-form .form-row, */
.feature-contract-form .form-group {
    margin-bottom: 1.5rem;
}

.benifit-item-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 800px;
    font-size: 1.2rem;
    transition: color 0.3s ease
}

.benifit-item-text a:hover {
    color: #18aae0;
}

/*history*/
.timeline-container {
    padding: 80px 0;
    /* background-color: #ffffff; */
    background-color: var(--primary-bg-color);
    max-width: 1200px;
}

/*long-term*/
/*  <section class="long-term">
        <div class="long-term-content">
            <div class="long-term-text">*/
.long-term {
    padding: 80px 0;
    background-color: var(--primary-bg-color);
    color: white;
}

.long-term-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;
}



/* 时间轴主体 */
.timeline {
    display: flex;
    position: relative;
    padding: 2rem 0;
    overflow-x: auto;
    scrollbar-width: thin;
    justify-content: center;
    /* align-items: center;  */
}

.timeline-item {
    /* width: 20%; */
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    flex: 0 0 calc(25% - 15px);
}


.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 0;
    left: 15px;
    width: 100%;
    height: 1px;
    background-color: var(--menu-nav-bd-color);
    z-index: 0;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    /* background: #e74c3c;   */
    /* background: #182744; */
    /* background-color: var(--white-color); */
    background-color: var(--time-line-item-color);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
    /* box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2);   */
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2);
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: bold;
    /* color: #182744; */
    /* color: var(--white-color); */
    /* color: var(--site-color-1); */
    color: var(--time-line-item-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.timeline-content {
    /* background: #f9f9f9;   */
    padding: 1.5rem;
    /* border-radius: 8px;  
             box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);   */
    text-align: center;
}

.timeline-content h3 {
    color: var(--time-line-item-color);
    margin-top: 0;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--time-line-item-color);
    margin-top: 0;
    font-size: 14px;


}

/* 悬停效果 */
/* .timeline-item:hover {  
              transform: translateY(-10px);  
        }   */
.timeline-container-item-section {
    background-color: var(--primary-bg-color);
    padding: var(--section-padding)
}

.timeline-container-item-section h2,
.timeline-container-item-section p {
    color: var(--white-color);
}

.timeline-item-grid-2 {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px; */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.timeline-item-grid-2-item-1 {
    align-self: center;
}

.timeline-item-grid-2 img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.timeline-item-grid-2 h2 {
    /* font-size: 2.5rem; */
    margin-bottom: 20px;
    color: var(--white-color);
}

.timeline-item-grid-2 p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--white-color);
}

.timeline-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    transform: scale(1.1);
}

.timeline-dot.clicked {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.timeline-container-item-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-container-item-content.active {
    display: block;
    opacity: 1;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}


.globe-office {
    /* background-color: var(--primary-bg-color); */
    background-color: var(--white-color);
    padding: var(--section-padding);
    /* color: var(--white-color); */
}

.globe-office h2 {
    color: var(--primary-color);
}

.globe-office p {
    /* color: var(--white-color); */
    max-width: 900px;
    margin: 0 auto;
}


.globe-office-content {
    text-align: center;
}

.contact-us-section {
    padding: var(--section-padding);
    /* color: var(--white-color); */
    background-color: var(--white-color);
    /* background: linear-gradient(to bottom, #182744, #121b2c); */
}

.contact-us-item h2 {
    /* font-size: 2.5rem; */
    margin-bottom: 20px;
    color: var(--primary-bg-color);
}

.font-body-lg-bold {
    font: 600 1.125rem var(--font-family);
    letter-spacing: 0;
    /* color: #4ecdc4; */

}


.items-grid-2 {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.items-grid-2 img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.grid-4-columns {
    grid-template-columns: repeat(4, 1fr);
}

.grid-4-columns p {
    display: inline;
    font-size: 1.1rem;
}

.items-center {
    text-align: center;
}

.items-right {
    text-align: right;
}

.w-48 {
    width: 3rem;
}

.h-48 {
    height: 3rem
}

.h-24 {
    height: 24px;
}

.w-24 {
    width: 24px;
}

.grid-4-columns-max-width {
    max-width: 900px;
    margin: 0 auto;
}

.grid-4-columns a svg {
    transition: all 0.3s ease;
    color: var(--primary-bg-color);
}

.grid-4-columns a:hover svg {
    /* color: #02928f;  */
    transform: scale(1.1);
    stroke-width: 1;
}

.grid-4-columns a:active svg {
    transform: scale(0.95);
}

.grid-4-columns a {
    display: block;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    /* background: linear-gradient(135deg, rgba(2, 146, 143, 0.02) 0%, rgba(24, 39, 68, 0.02) 100%); */
}


.grid-4-columns .font-body-lg-bold {
    /* color: var(--site-color-1); */
    color: var(--primary-bg-color);
    transition: all 0.3s ease;
}

.section-title-p-color {
    color: var(--font-p-gray-color);
}

/* Footer */
.footer {
    background-color: var(--primary-bg-color);
    color: white;
    padding: 60px 0 30px;

}

.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: 40px 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;
}


.our-service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.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; */
}



.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; */
    width: 36px;
    height: 36px;
    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;
}


    .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(--time-line-item-color); */
        color: var(--white-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);
      }

      /* 图标基础样式 */
.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;
}



.feature-icon {
  text-align: center;
  margin-bottom: 1rem;
}

.mb-5p{
 margin-bottom: 5px;
}


.mb-20{
 margin-bottom: 20px;
}
