/********** Template CSS **********/
:root {
    --primary: #2d79fe;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Hero Carousel ***/
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: block;
}

.hero-carousel .carousel-inner {
    height: 800px;
}

.hero-carousel .carousel-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 800px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-carousel .carousel-item.active {
    display: flex;
}

.hero-carousel .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 121, 254, 0.3);
    z-index: 1;
}

.hero-carousel .carousel-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.hero-carousel .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-104%);
    z-index: 3;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    margin: 0 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background-color: white;
    opacity: 1;
    transform: scale(1.2);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(45, 121, 254, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background-color: rgba(45, 121, 254, 0.8);
    opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 400px;
    }
    
    .hero-carousel .carousel-inner {
        height: 400px;
    }
    
    .hero-carousel .carousel-content {
        padding: 20px;
    }
    
    .hero-carousel .carousel-content h4 {
        font-size: 1.5rem !important;
    }
    
    .hero-carousel .carousel-content p {
        font-size: 0.9rem !important;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

/*** Dropdown Menu Hover ***/
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: fadeIn 0.3s ease-in;
}

.dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}

/*** Hero Carousel ***/
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(45, 121, 254, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev {
    left: 30px;
}

#heroCarousel .carousel-control-next {
    right: 30px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background-color: rgba(45, 121, 254, 0.6);
    opacity: 1;
}

#heroCarousel .carousel-item {
    padding: 20px 0;
}

#heroCarousel .carousel-item .row {
    margin: 0;
}

#heroCarousel .carousel-indicators {
    position: absolute;
    margin-bottom: 0;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: 2px solid transparent;
    margin: 0 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: #2d79fe;
    opacity: 1;
    transform: scale(1.2);
}

#heroCarousel .carousel-indicators button:hover {
    opacity: 1;
    background-color: #2d79fe;
}




.section-title {
    color: #2d79fe;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.nav-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.nav-item1 {
    padding: 5px 20px;
    border-radius: 20px;
    background-color: var(--bg-green-light);
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.nav-item1:hover {
    background-color: #abcaff;
    color: white;
}

.nav-item1.active {
    background: linear-gradient(90deg, #2d79fe 0%, #2d79fe 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(45, 121, 254, 0.3);
}

.carousel-content1 {
    position: relative;
    overflow: hidden;
    min-height: 430px;
}

.slide1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    
 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.5s ease-in-out;
}

.slide1.active {
    position: relative; 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.text-content {
    flex: 1;
    max-width: 500px;
    margin-top: 20px;
}

.headline {
    font-size: 3rem;
    font-weight: 500;
    color: black;
    line-height: 1.2;
    margin-bottom: 40px;
}


.features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--bg-green-light);
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn1 {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.btn1:active {
    transform: scale(0.98);
}

.btn1-primary {
    background-color: #5593ff; 
    border: none;
}

.btn1-primary:hover {
    background-color: #2d79fe;
}

.btn2 {
    padding: 20px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.btn2:active {
    transform: scale(0.98);
}

.btn2-primary {
    background-color: #5593ff; 
    border: none;
}

.btn2-primary:hover {
    background-color: #2d79fe;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 500px; 
}

.hero-img {
    width: 400px;
    height: auto;
    display: block;
    border-radius: 20px;
    margin-right: 200px;
    
}

@media (max-width: 768px) {
    .slide {
        flex-direction: column-reverse;
        text-align: left;
    }
    .headline {
        font-size: 2rem;
    }
    .nav-pills {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
}


.left-col {
    flex: 1;
    min-width: 350px;
}

.sub-header {
    color: #2d79fe;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.sub-header-small {
    color: #2d79fe;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: black;
    margin-bottom: 20px;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 2rem;
    padding: 0;
    padding-top: 30px;
}

        
.right-col {
    flex: 1;
    min-width: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}


.right-col img {
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 250px;
}


.main-heading {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 500;
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 24px;
    margin-bottom: 40px;
}

.card {
    border: 2px solid #7aabff;
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 121, 254, 0.1);
}

.card-title1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111111;
}

.icon-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature-text {
    color: black;
    line-height: 1.4;
    font-weight: 500;
    font-size: 1.3rem;
}

.lang {
    font-size: 2rem;
    line-height: 2;
    padding-bottom: 20px;
}

.banner1 {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-repeat: no-repeat; 
    background-position: center; 
}


@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    .banner {
        flex-direction: column;
        height: auto;
        background: #eaf4ff;
    }
    .banner-bg-img {
        position: relative;
        width: 100%;
        height: 200px;
        mask-image: none;
        -webkit-mask-image: none;
        order: -1; 
    }
    .banner-content {
        padding: 30px;
        max-width: 100%;
    }
    .main-heading {
        font-size: 1.8rem;
    }
}

.cards-container-credit {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 24px;
    margin-bottom: 40px;
    border: 1px solid #ececec;
    border-radius: 20px;
}

.card-credit {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
}

.card-image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-image {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
}


.process-wrapper {
    position: relative;
    padding: 30px 20px 50px 20px; 
}

.steps-list {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1; 
}

.step-item {
    flex: 1; 
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(45, 121, 254, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 200px; 
}

.step-image-box {
    height: 160px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: #eaeaea 1px solid;
}
        
.illustration {
    width: 100%;
    height: 100%;
    max-width: 250px;
}

.step-content {
    padding: 25px;
    flex-grow: 1; 
}

.step-number {
    color: #2d79fe ;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .main-title {
        font-size: 2rem;
    }
    .steps-list {
        flex-wrap: wrap; 
    }
    .step-item {
        min-width: 45%; 
    }
        .process-wrapper::before {
        height: 85%;
        }
}

@media (max-width: 600px) {
        .header-section {
            text-align: center;
        }
        .main-title {
            max-width: 100%;
        }
    .steps-list {
        flex-direction: column; 
        gap: 30px;
    }
    .process-wrapper {
        padding: 20px 10px;
    }
    .process-wrapper::before {
        height: 100%;
        border-radius: 20px;
    }
    .step-item {
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
}

.credit-con {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 0 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.avatar-list {
    width: 120px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
        
.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.avatar.active {
    width: 100px;
    height: 100px;
    box-shadow: 0 5px 15px rgba(45, 121, 254, 0.8);
}

.avatar:not(.active) {
    opacity: 0.6;
    filter: brightness(0.8);
}

.avatar:not(.active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}
        
.content {
    flex: 1;
    background-color: #F2F8FE;
    border-radius: 20px;
    display: flex;
    margin-left: 10px;
    flex-direction: column;
    justify-content: center;
}
        
.person-name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.person-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    border-left: 3px solid #2d79fe;
    padding-left: 15px;
}
        
.photo-section {
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.group-photo {
    width: 100%;
    max-width: 350px;
}

.image-section {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.representative-image {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    margin-right: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.content-section {
    padding: 40px;
}
.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 30px;
}
.feature-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}
.feature-list li:before {
    content: "✓";
    color: #2d79fe;
    font-weight: bold;
    position: absolute;
    left: 0;
}
@media (max-width: 768px) {
    .content-wrapper {
        margin: 20px;
    }
    .image-section {
        padding: 30px;
    }
    .content-section {
        padding: 30px;
    }
}



.form-container {
    max-width: 700px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
}

label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

label span {
    color: var(--primary-blue);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none; 
}

input:focus,
textarea:focus {
    outline: none;
}

.placeholder-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 5px;
    display: block;
}

textarea {
    height: 150px;
}


.submit-group {
    margin-top: 40px;
}


@media (max-width: 600px) {
    .form-container {
        padding: 25px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-field {
        margin-bottom: 20px;
    }
}


.faq-container {
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-content {
    display: flex;
    min-height: 500px;
}

.questions-section {
    flex: 1;
    background-color: #f9fbff;
    border-right: 1px solid #eaeaea;
    padding: 0;
    overflow-y: auto;
}

.question-item {
    padding: 12px 25px;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.question-item:hover {
    background-color: #e6f0ff;
}

.question-item.active {
    background-color: #e6f0ff;
    border-left: 3px solid #2d79fe;
    font-weight: 600;
    color: #2d79fe;
}


.answer-section {
    flex: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.answer-content {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.answer {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.answer.active {
    display: block;
    opacity: 1;
}

.answer-placeholder {
    text-align: center;
    color: #888;
    font-style: italic;
}

.answer-title {
    color: #2d79fe;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.answer-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.answer-icon {
    font-size: 3rem;
    color: #e6f0ff;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .faq-content {
        flex-direction: column;
    }
    
    .questions-section {
        max-height: 300px;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }
}


.side-image-wrapper {
    flex: 1; 
    overflow: hidden;
    border-radius: 20px;
    position: relative; /* 必须是 relative，供子元素 absolute 定位 */
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.side-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s;
    transform: scale(0.95); /* 初始略微缩小 */
}

.side-image-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 10;
}

.product-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-content1 {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* 确保高度足够 */
}

.slide1 {
    /* 继承上一次的样式，确保它们使用 absolute 定位来堆叠 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.5s ease-in-out;
}

.slide1.active {
    position: relative; /* 或者保持 absolute 并设置 z-index，这里我们使用 relative 确保容器高度正确 */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---------------------------------------------------- */
/* --- 4. 响应式 (小屏幕上图片在文本下方) --- */
/* ---------------------------------------------------- */
@media (max-width: 992px) {
    .product-page-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .side-image-wrapper {
        height: 300px; 
    }
}



.news-section {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.news-card {
    background-color: white;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 121, 254, 0.15);
}

.card-image-wrapper {
    width: 100%;
    height: 200px; 
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
        
.card-content {
    padding: 20px;
}

.meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tag {
    background-color: #eef6ff; 
    color: #2d79fe;        
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.date {
    font-size: 0.8rem;
    color: #777;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 75px; 
}

.read-more {
    color: #2d79fe;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2d79fe;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .card-title {
        min-height: auto; 
    }
}


.governance-section {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        /* 标题 */
        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 40px;
        }

        /* --- 3. 导航切换 (Tabs) --- */
        .governance-tabs {
            display: inline-flex;
            background-color: white;
            padding: 5px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
        }

        .tab-item {
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background: transparent;
        }

        .tab-item.active {
            background-color: var(--primary-blue);
            color: #2d79fe;
            box-shadow: 0 2px 10px rgba(45, 121, 254, 0.3);
        }

        /* --- 4. 人物卡片网格 (Board Grid) --- */
        .board-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            text-align: left;
        }

        /* 人物卡片样式 */
        .person-card {
            background-color: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .person-image-wrapper {
            width: 100%;
            /* 保持宽高比接近 1:1.2 */
            padding-bottom: 120%; 
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            margin-bottom: 20px;
        }
        
        /* 模拟原图中的内圆角 */
        .person-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: var(--radius-md);
            /* 确保图片本身是填满的 */
        }


        .person-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .person-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .person-title {
            font-size: 0.95rem;
            color: var(--text-gray);
            font-weight: 400;
        }

        /* --- 5. 响应式适配 --- */
        @media (max-width: 992px) {
            .board-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
             .governance-tabs {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                padding: 10px;
            }
            .section-title {
                margin-bottom: 20px;
            }
        }