/* 覆盖主内容区域的上边距 */
.main-content {
    padding-top: 0 !important;
}

/* 轮播图增强样式 */
.hero-carousel {
    margin-top: -1px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; /* 防止元素溢出 */
}

.hero-carousel .carousel-item {
    height: 625px;
    background-size: cover;
    background-position: center;
    position: relative;
    max-width: 1520px;
    will-change: opacity; /* 提示浏览器将要有变化，优化渲染性能 */
}

.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 625px;
    width: 100%;
    max-width: 1520px;
    transform: scale(1.01); /* 微小缩放避免边缘可能的白边 */
}

/* 清除默认轮播指示器样式 */
.carousel-indicators {
    display: none !important;
}

/* 自定义轮播指示器样式 */
.carousel-indicators.custom-indicators {
    display: flex !important;
    bottom: 30px;
    z-index: 15;
    margin-bottom: 0;
    justify-content: center;
    gap: 8px;
}

.carousel-indicators.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none !important;
    margin: 0 !important;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.carousel-indicators.custom-indicators button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background-color: transparent;
    z-index: -1;
    transition: all 0.3s ease;
}

/* 进度指示效果 - 为活动指示器添加进度动画 */
.carousel-indicators.custom-indicators button.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    transform-origin: center;
    /* 移除固定的动画时间，使用CSS变量，JS会动态设置 */
    animation: indicatorProgress var(--carousel-interval, 5000ms) linear forwards;
    z-index: -1;
}

.carousel-indicators.custom-indicators button.active {
    background-color: var(--primary);
    width: 14px;
    height: 14px;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(142, 67, 231, 0.5);
}

.carousel-indicators.custom-indicators button:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.9);
}

.carousel-indicators.custom-indicators button.active:hover {
    background-color: var(--primary);
}

/* 轮播指示器在移动设备上的样式 */
@media (max-width: 768px) {
    .carousel-indicators.custom-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .carousel-indicators.custom-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicators.custom-indicators button.active {
        width: 12px;
        height: 12px;
    }
}

/* 增强轮播图淡入淡出效果 */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* 防止闪烁 */
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 优化轮播控制按钮 */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(229, 134, 56, 0.819);
    border-radius: 50%;
    background-size: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}

/* 确保轮播图容器有正确的定位 */
.carousel {
    position: relative;
    overflow: hidden;
    will-change: transform; /* 提示浏览器将要有变化，优化渲染性能 */
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: translateZ(0); /* 强制硬件加速 */
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item,
    .hero-carousel .carousel-item img {
        height: 300px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
    
    .carousel-indicators.custom-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .carousel-indicators.custom-indicators button.active {
        width: 10px;
        height: 10px;
    }
}

/* 新闻列表样式 */
.news-section {
    background-color: #fff;
}

.news-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid rgba(142, 67, 231, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    background-color: rgba(142, 67, 231, 0.05);
    padding-left: 10px;
}

.news-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.news-title {
    color: #333;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: var(--primary);
}

/* 统一按钮样式 */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

/* 主要按钮样式 */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-on-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--gradient-primary) !important;
    color: var(--text-on-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 67, 231, 0.3);
}

/* 轮廓按钮样式 */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: var(--gradient-primary) !important;
    border-color: transparent !important;
    color: var(--text-on-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 67, 231, 0.3);
}

/* 浅色按钮样式 */
.btn-light {
    background: #ffffff;
    border: none;
    color: var(--primary);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    background: #ffffff !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 圆形按钮样式 */
.rounded-pill {
    border-radius: 50px !important;
}

/* 服务卡片按钮样式覆盖 */
.service-card .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.service-card .btn-outline-primary:hover,
.service-card .btn-outline-primary:focus,
.service-card .btn-outline-primary:active {
    background: var(--gradient-primary) !important;
    border-color: transparent !important;
    color: var(--text-on-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 67, 231, 0.3);
}

/* CTA区块按钮样式覆盖 */
.cta-section .btn-light {
    background: #ffffff;
    border: none;
    color: var(--primary);
    font-weight: 600;
}

.cta-section .btn-light:hover,
.cta-section .btn-light:focus,
.cta-section .btn-light:active {
    background: #ffffff !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 移除Bootstrap默认的按钮焦点样式 */
.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: none;
}

/* 服务卡片样式优化 */
.service-card {
    transition: transform 0.3s ease;
    /*margin-top: 60px;*/ /* 增加上边距，为图标留出空间 */
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card-inner {
    border-radius: 15px;
    overflow: visible; /* 修改为visible，让图标可以溢出 */
    transition: all 0.3s ease;
    background: #fff;
}

.service-icon {
    width: 100px; /* 增加图标容器尺寸 */
    height: 100px; /* 增加图标容器尺寸 */
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px; /* 调整上边距 */
    position: relative; /* 添加相对定位 */
    z-index: 2; /* 确保图标在卡片上层 */
    box-shadow: 0 5px 15px rgba(142, 67, 231, 0.3);
}

.service-icon i {
    font-size: 2.5rem; /* 增加图标大小 */
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.section-title {
    color: var(--primary-dark);
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.service-card .card-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* 行动召唤区块样式 */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 装饰圆圈样式 */
.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: 10%;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: -50px;
}

.services-section {
    padding: 2rem 0;
    background-color: #fff;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 10px;
}

/* PC端服务卡片 */
@media (min-width: 769px) {
.service-card {
    background: #fff;
    border-radius: 15px;
        padding: 2rem 1.5rem;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
        align-items: center;
        text-align: center;
}

.service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: #eaeaea;
}

.service-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
    color: #333;
}

.service-desc {
    color: #666;
        margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
        display: inline-flex;
        align-items: center;
        color: var(--primary);
        font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        background-color: rgba(var(--primary-rgb), 0.1);
}

.service-link:hover {
        background-color: var(--primary);
    color: #fff;
        transform: translateX(5px);
    }
    
    .service-link:after {
        content: "→";
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .service-link:hover:after {
        transform: translateX(3px);
    }
}

/* 为什么选择我们部分 */
.why-choose-us {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* PC端特点卡片 */
@media (min-width: 769px) {
.feature-card {
        background: #fff;
        border-radius: 15px;
        padding: 2rem;
    height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    display: flex;
        align-items: flex-start;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

    .feature-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-right: 1.5rem;
        transition: all 0.3s ease;
}

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
}

.feature-content h3 {
        font-size: 1.25rem;
        font-weight: 700;
    margin-bottom: 1rem;
        color: #333;
}

    .feature-detail p {
    color: #666;
        margin-bottom: 0.5rem;
    }
}

/* 客户评价部分样式 */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(143,113,208,0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #8f71d0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.client-type {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.rating {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-type {
        font-size: 0.8rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* 直接在内容区域开始处覆盖main-content的样式 */
.main-content {
    padding-top: 0 !important;
}

/* 调整各个版块之间的间距 */
.section {
    margin-bottom: 80px;
}

.section:last-child {
    margin-bottom: 0;
}

/* 调整标题和内容之间的间距 */
.section-title {
    margin-bottom: 40px;
    text-align: center;
}

/* 调整卡片网格的间距 */
.card-grid {
    margin-top: 30px;
    margin-bottom: 40px;
}

/* 调整新闻版块的间距 */
.news-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* 调整服务特点版块的间距 */
.features-section {
    padding: 70px 0;
}

/* 调整合作伙伴版块的间距 */
.partners-section {
    padding: 50px 0;
    background-color: #fff;
}

/* 调整联系方式版块的间距 */
.contact-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section {
        margin-bottom: 60px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .features-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .news-section,
    .partners-section {
        padding: 40px 0;
    }
}

/* 调整轮播图下方内容的间距 */
.carousel-section + .section {
    margin-top: 80px;
}

/* 优化卡片之间的间距 */
.card {
    margin-bottom: 30px;
}

/* 调整按钮组件的间距 */
.btn-group {
    margin: 40px 0;
}

/* 调整列表组件的间距 */
.list-group {
    margin-bottom: 30px;
}

/* 调整图标和文字之间的间距 */
.feature-icon {
    margin-bottom: 20px;
}

/* 调整段落文本的间距 */
p {
    margin-bottom: 1.5rem;
}

/* 调整小标题和内容之间的间距 */
h3, h4 {
    margin-bottom: 1.2rem;
}

/* 轮播图过渡效果优化 */
.carousel-transitioning .hero-carousel {
    pointer-events: none;
}

/* 减少移动设备上的动画卡顿 */
@media (max-width: 767.98px) {
    .carousel-fade .carousel-item {
        transition-duration: 0.8s;
    }
}

/* 高DPI屏幕优化 */
@media screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
    .hero-carousel img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Safari特定修正 */
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .carousel-fade .carousel-item {
            -webkit-transition-property: opacity;
            transition-property: opacity;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        
        .hero-carousel .carousel-item.active img {
            -webkit-transform: perspective(1px) translateZ(0);
            transform: perspective(1px) translateZ(0);
        }
    }
}

/* 轮播指示器交互样式 */
.carousel-indicators.custom-indicators button.indicator-will-active {
    transform: scale(1.3);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-indicators.custom-indicators button.indicator-clicked {
    animation: indicatorPulse 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes indicatorPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(142, 67, 231, 0.7);
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 0 10px rgba(142, 67, 231, 0);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 0 0 rgba(142, 67, 231, 0);
    }
}

@keyframes indicatorProgress {
    0% {
        transform: scale(0);
        opacity: 0.3;
    }
    90% {
        transform: scale(2.5);
        opacity: 0;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* 评价轮播效果 */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-carousel .carousel-indicators {
    bottom: -40px;
}

.testimonials-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d9d9d9;
    margin: 0 5px;
    border: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-indicators button.active {
    width: 14px;
    height: 14px;
    opacity: 1;
    background-color: #8f71d0;
    transform: scale(1.1);
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    background: linear-gradient(to left, rgb(223 99 19 / 83%), transparent);
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-control-next {
    background: linear-gradient(to left, rgb(223 99 19 / 83%), transparent);
    border-radius: 50px 0 0 50px;
}

.testimonials-carousel .carousel-control-prev:hover,
.testimonials-carousel .carousel-control-next:hover {
    opacity: 0.9;
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 3px rgba(218, 65, 9, 0.844));
}

/* 部分显示左右评价卡片 */
.testimonials-carousel .carousel-inner {
    padding: 20px 0;
    overflow: visible;
}

.testimonials-carousel .carousel-item {
    transition: transform 0.8s ease, opacity 0.5s ease;
    perspective: 1000px;
}

.testimonials-carousel .carousel-item .testimonial-card {
    transition: all 0.4s ease;
}

/* 左右侧部分显示的卡片样式 */
.testimonials-carousel .col-lg-4:first-child .testimonial-card {
    transform: perspective(1000px) rotateY(5deg);
    transform-origin: left center;
    box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonials-carousel .col-lg-4:last-child .testimonial-card {
    transform: perspective(1000px) rotateY(-5deg);
    transform-origin: right center;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.08);
}

/* 中间卡片高亮效果 */
.testimonials-carousel .col-lg-4:nth-child(2) .testimonial-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(143, 113, 208, 0.15);
    border: 2px solid rgba(143, 113, 208, 0.1);
}

/* 移动端响应式样式 */
@media (max-width: 992px) {
    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
        width: 10%;
        background: rgba(143, 113, 208, 0.3);
    }
    
    .testimonials-carousel .col-lg-4:first-child .testimonial-card,
    .testimonials-carousel .col-lg-4:last-child .testimonial-card,
    .testimonials-carousel .col-lg-4:nth-child(2) .testimonial-card {
        transform: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border: none;
    }
}

/* 评价卡片动画 */
@keyframes testimonialFadeIn {
    0% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
div.testimonial-footer > span {
    margin-bottom: 10px;
}
.next-testimonial {
    opacity: 0.8;
    transform: translateX(30px);
}

.theme{
    color: var(--primary);
    font-weight: bold;
    font-size: 3.25rem;
}