/**
 * banner styles
 **/
.banner .swiper-pagination {
    bottom: 115px !important; /* Above the 100px overlap of home-category-nav */
    z-index: 20;
}
.banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid #fff;
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.banner .swiper-pagination-bullet-active {
    background-color: #fff;
}

.swiper-slide{
    position: relative;
}
.banner .swiper-slide-link{
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.banner .swiper-slide-link:hover{
    color: inherit;
    text-decoration: none;
}
.banner .swiper,
.banner .swiper-slide{
    height: calc(100vh - 100px);
}
.banner .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .swiper-slide .swiper-slide-title{
    position: absolute;
    top: 50%;
    left: 12% !important;
    right: auto !important;
    transform: translateY(-50%);
    color: #FFFFFF !important;
    width: 42%;
    text-align: left !important;
    z-index: 2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}
.banner .swiper-slide .swiper-slide-name{
    color: #FFFFFF !important;
    font-size: 58px;
    line-height: 1.1;
    font-weight: bold;
    text-transform: uppercase;
    user-select: text;
    -webkit-user-select: text;
    pointer-events: auto;
    cursor: text;
}
.banner .swiper-slide .swiper-slide-desc{
    color: #FFFFFF !important;
    margin-top: 25px;
    font-size: 25px;
    line-height: 1.5;
    font-weight: bold;
    user-select: text;
    -webkit-user-select: text;
    pointer-events: auto;
    cursor: text;
}
.swiper-slide-title span{
    color: #FFFFFF !important;
}
.banner .swiper-slide-actions {
    margin-top: 40px;
    display: flex;
    gap: 24px;
    pointer-events: auto;
}
.banner .swiper-slide-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 42px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.banner .swiper-slide-actions .btn-quote {
    background-color: #ea222d;
    color: #ffffff;
    border: 2px solid #ea222d;
}
.banner .swiper-slide-actions .btn-quote:hover {
    background-color: #c91922;
    border-color: #c91922;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 34, 45, 0.4);
}
.banner .swiper-slide-actions .btn-products {
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.banner .swiper-slide-actions .btn-products:hover {
    background-color: #ffffff;
    color: #ea222d;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 1100px) and (max-width: 1440px) {
    .banner .swiper,
    .banner .swiper-slide{
        height: calc(100vh - 100px);
    }
    .banner .swiper-slide .swiper-slide-title{
        left: 10%;
        width: 48%;
    }
    .banner .swiper-slide .swiper-slide-name{
        font-size: 58px;
    }
    .banner .swiper-slide .swiper-slide-desc{
        font-size: 25px;
    }
    .banner .swiper-slide-actions {
        margin-top: 30px;
    }
    .banner .swiper-slide-actions a {
        height: 45px;
        padding: 0 30px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 1100px) {
    .banner .swiper,
    .banner .swiper-slide{
        height: calc(100vh - 60px);
    }
    .banner .swiper-slide .swiper-slide-title{
        left: 8%;
        width: 78%;
    }
    .banner .swiper-slide .swiper-slide-name{
        font-size: 58px;
    }
    .banner .swiper-slide .swiper-slide-desc{
        font-size: 25px;
    }
    .banner .swiper-slide-actions {
        margin-top: 20px;
    }
    .banner .swiper-slide-actions a {
        height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }
}


/**
 * home category navigation styles
 **/
/**
 * home category navigation styles
 **/
.home-category-nav {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: -100px auto 0; /* Overlap banner */
    border-radius: 4px;
    overflow: hidden;
    animation: fadeInUpWhole 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.1s;
}

@keyframes fadeInUpWhole {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-category-nav .product-category-nav__inner {
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}
/* Sleek Scrollbar */
.home-category-nav .product-category-nav__inner::-webkit-scrollbar {
    height: 6px;
}
.home-category-nav .product-category-nav__inner::-webkit-scrollbar-track {
    background: #f8f9fa; 
}
.home-category-nav .product-category-nav__inner::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 4px;
}
.home-category-nav .product-category-nav__inner::-webkit-scrollbar-thumb:hover {
    background: #9ca3af; 
}
.home-category-nav .product-category-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
    min-width: 100%;
}
.home-category-nav .product-category-nav__item {
    display: flex;
    flex: 1;
    min-width: 150px;
}
.home-category-nav .product-category-nav__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 10px;
    width: 100%;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}
.home-category-nav .product-category-nav__item:nth-child(even) a {
    background-color: #f2f2f2;
}
.home-category-nav .product-category-nav__item:nth-child(odd) a {
    background-color: #ffffff;
}
.home-category-nav .product-category-nav__icon {
    width: 48px;
    height: 48px;
    margin-right: 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 0.3s;
}
.home-category-nav .product-category-nav__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.home-category-nav .product-category-nav__item:hover a {
    background-color: #c82021;
    color: #fff;
}
.home-category-nav .product-category-nav__item:hover .product-category-nav__icon img {
    transform: scale(1.15);
}

/**
 * home stats styles
 **/
.home-stats {
    background: #ffffff;
    width: 100%;
    padding: 80px 0;
    margin-top: 50px; 
    position: relative;
    z-index: 10;
}
.home-stats-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}
.home-stats .stat-item {
    text-align: left;
}
.home-stats .stat-num-wrap {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.home-stats .stat-num {
    font-size: 52px;
    font-weight: 700;
    color: #c82021;
    line-height: 1;
    font-family: 'Inter', Arial, sans-serif;
}
.home-stats .stat-unit {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}
.home-stats .stat-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    font-family: 'Poppins', Arial, sans-serif;
}
@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .home-stats-wrap {
        width: 900px;
        gap: 20px;
    }
    .home-stats .stat-num {
        font-size: 42px;
    }
}
@media only screen and (max-width: 1000px) {
    .home-stats {
        padding: 50px 0;
    }
    .home-stats-wrap {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .home-stats .stat-num {
        font-size: 36px;
    }
}
@media only screen and (max-width: 768px) {
    .home-stats-wrap {
        width: 90%;
        grid-template-columns: 1fr;
    }
}

/**
 * hot products styles
 **/
.hot-products{
    max-width: 1400px;
    margin: 80px auto;
    overflow: hidden;
}
.hot-products .hot-products-desc{
    font-size: 18px;
    color: #333333;
    text-align: center;
    margin-top: 10px;
}
.products-category{
    position: relative;
    padding: 0 40px;
}
.products-category .swiper-wrapper{
    justify-content: center;
}
.swiper-products-category {
    height: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    overflow: hidden;
}
.category-slide {
    width: auto !important; /* 自动宽度 */
    padding: 0 15px;
    cursor: pointer;
    transition: color 0.3s;
    color: #262626;
    line-height: 40px;
    font-size: 18px;
    border-bottom: 2px solid #E6E6E6;
}
.category-slide.active {
    color: #ea222d;
    border-bottom: 2px solid #ea222d;
}
.products-category .swiper-button-prev{
    width: 30px;
    height: 30px;
    background: url(../images/arrow-left.webp) no-repeat center;
    background-size: 100%;
    top: auto;
    bottom: 5px;
}
.products-category .swiper-button-next{
    width: 30px;
    height: 30px;
    background: url(../images/arrow-right.webp) no-repeat center;
    background-size: 100%;
    top: auto;
    bottom: 5px;
}
.products-category .swiper-button-prev:after,
.products-category .swiper-button-next:after{
    content: '';
}

.products .products-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
}
.products .products-list li {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    list-style: none;
    width: auto;
    margin: 0;
    float: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.products .products-list li:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
.product_item__link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: inherit;
    text-decoration: none;
}
.products .products-list li .product_list_item_img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #edf1f6;
    margin-bottom: 0;
}
.products .products-list li .product_list_item_img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: skewX(-25deg);
}
.products .products-list li .product_list_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.products .products-list li:hover .product_list_item_img img {
    transform: scale(1.05);
}
.products .products-list li:hover .product_list_item_img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% { left: 125%; }
}
@keyframes shine {
    100% { left: 100%; }
}
.product_item__content {
    padding: 24px 24px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.products .products-list li .product_list_item_title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #222222;
    margin-bottom: 14px;
    transition: color 0.3s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.products .products-list li:hover .product_list_item_title {
    color: #c82021;
}
.products .products-list li .product_list_item_category {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 0;
}
.product_item__footer {
    padding: 0 24px 24px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.products .products-list li .product_list_item_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 42px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 0;
    float: none;
    flex: 1;
    width: auto;
    text-decoration: none;
}
.products .products-list li .product_list_item_btn.quote-btn {
    background: #c82021;
    color: #ffffff;
}
.products .products-list li .product_list_item_btn.quote-btn:hover {
    background: #a9181a;
    color: #ffffff;
}
.products .products-list li .product_list_item_btn.detail-btn {
    background: transparent;
    border: 1px solid #c82021;
    color: #c82021;
}
.products .products-list li .product_list_item_btn.detail-btn:hover {
    background: #c82021;
    color: #ffffff;
}
.products .products-list li:hover .product_list_item_btn {
    background: inherit;
    color: inherit;
}
.products .products-list li:hover .product_list_item_btn.quote-btn {
    background: #c82021;
    color: #ffffff;
}
.products .products-list li:hover .product_list_item_btn.quote-btn:hover {
    background: #a9181a;
}
.products .products-list li:hover .product_list_item_btn.detail-btn {
    background: transparent;
    color: #c82021;
    border-color: #c82021;
}
.products .products-list li:hover .product_list_item_btn.detail-btn:hover {
    background: #c82021;
    color: #ffffff;
}

/* Reset arrow stretch on card hover for the homepage hot products */
.products .products-list li:hover .btn-arrow {
    width: 16px !important;
    transform: none !important;
}

/* Only apply arrow stretch when the button itself is directly hovered */
.products .products-list li .product_list_item_btn:hover .btn-arrow {
    width: 48px !important;
    transform: translateX(8px) !important;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .hot-products{
        width: 900px;
        margin: 60px auto;
    }
    .hot-products .hot-products-desc{
        font-size: 16px;
    }
    .hot-products .hot-products-list .hot-products-item{
        margin-top: 30px;
    }
    .hot-products .hot-products-list .hot-products-item .hot-products-item-title{
        font-size: 18px;
    }
    .hot-products .hot-products-list .hot-products-item .hot-products-item-desc{
        font-size: 14px;
    }
    .hot-products .hot-products-list .hot-products-item .product_list_item_btn{
        margin-top: 6px;
        width: 90px;
        height: 32px;
        line-height: 32px;
        border-radius: 16px;
    }
}

@media only screen and (max-width: 1000px) {
    .hot-products{
        width: 700px;
        margin: 40px auto;
    }
    .hot-products .hot-products-desc{
        font-size: 14px;
    }
    .hot-products .hot-products-list .hot-products-item{
        margin-top: 20px;
    }
    .hot-products .hot-products-list .hot-products-item .hot-products-item-title{
        font-size: 16px;
    }
    .hot-products .hot-products-list .hot-products-item .hot-products-item-desc{
        font-size: 12px;
    }
    .hot-products .hot-products-list .hot-products-item .product_list_item_btn{
        margin-top: 2px;
        width: 80px;
        height: 28px;
        line-height: 28px;
        border-radius: 14px;
    }
}

/**
 * home about new styles
 **/
.home-about-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
    background: #111;
    overflow: hidden;
}

.home-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.home-about-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.home-about-bg-red {
    position: absolute;
    top: 0;
    left: 75%;
    width: 50vw;
    height: 100%;
    background: #c82021;
    z-index: 1;
}

.home-about-bg-right-decor {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 11.5rem;
    z-index: 2;
    pointer-events: none;
}

.home-about-wrap {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.home-about-left {
    width: 55%;
    padding-right: 80px;
    color: #fff;
}

.home-about-video-btn {
    margin-bottom: 30px;
}
.home-about-video-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s;
}
.home-about-video-btn a:hover {
    background: #c82021;
    border-color: #c82021;
}
.home-about-video-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 4px;
}

.home-about-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.home-about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #FFFFFF;
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: 30px;
}
.home-about-desc p {
    margin-bottom: 16px;
}

.home-about-actions {
    margin-top: 40px;
}
.home-about-actions .about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 50px;
    background: #c82021;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 2px;
}
.home-about-actions .about-btn:hover {
    background: #a9181a;
}

.home-about-right {
    width: 45%;
    position: relative;
    right: -40px; 
}
.home-about-img {
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
}
.home-about-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* responsive */
@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .home-about-wrap, .home-engineering-wrap {
        width: 900px;
        padding: 60px 0;
    }
    .home-about-heading {
        font-size: 36px;
    }
    .home-about-left {
        padding-right: 40px;
    }
    .home-about-right {
        right: 0;
    }
    .engineering-num {
        font-size: 42px;
    }
}
@media only screen and (max-width: 1000px) {
    .home-about-wrap, .home-engineering-wrap {
        width: 700px;
    }
    .home-about-bg { width: 100%; }
    .home-about-bg-red { display: none; }
    .home-about-wrap { flex-direction: column; padding: 50px 0; }
    .home-about-left { width: 100%; padding-right: 0; margin-bottom: 40px; }
    .home-about-right { width: 100%; right: 0; }
    .engineering-list { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media only screen and (max-width: 768px) {
    .home-about-wrap, .home-engineering-wrap {
        width: 90%;
    }
    .engineering-list { grid-template-columns: 1fr; }
}

/**
* choose styles
***/
.choose-warp{
    width: 100%;
    /* margin: 80px auto 0; */
      margin: auto 0;
    /* padding: 60px 0; */
    background: #ffffff;
}
.choose-warp .choose{
    max-width: 1400px;
    margin: 0 auto;
}
.choose .choose-desc{
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin: 20px auto 40px;
    width: 90%;
}
.choose .choose-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 30px;
}
.choose .choose-list .choose-item{
    text-align: center;
}
.choose .choose-list .choose-item .choose-item-icon{
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.choose .choose-list .choose-item .choose-item-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}
.choose .choose-list .choose-item:hover .choose-item-icon img{
    transform: rotateY(360deg);
}
.choose .choose-list .choose-item .choose-item-title{
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    margin-top: 20px;
}
.choose .choose-list .choose-item .choose-item-desc{
    font-size: 14px;
    color: #666666;
    margin-top: 15px;
    line-height: 1.6;
}

/* Button styles */
.choose-btn-wrap {
    text-align: center;
    margin-top: 60px;
}
.choose-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f19a0a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.choose-btn:hover {
    background: #d88a09;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 154, 10, 0.3);
}
.choose-btn i {
    margin-left: 10px;
    font-size: 18px;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .choose-warp{
        margin-top: 60px;
        padding: 50px 0;
    }
    .choose-warp .choose{
        width: 900px;
    }
    .choose .choose-list{
        gap: 20px;
    }
}
@media only screen and (max-width: 1000px) {
    .choose-warp{
        margin-top: 40px;
        padding: 40px 0;
    }
    .choose-warp .choose{
        width: 700px;
    }
    .choose .choose-list{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
/**
 * certificate styles
 ***/
.certificate{
    max-width: 1400px;
    width: 94%;
    margin: 80px auto;
}
.certificate .certificate-carousel{
    position: relative;
    margin-top: 40px;
    padding: 0 54px 34px;
}
.certificate .certificate-swiper{
    overflow: hidden;
}
.certificate .swiper-wrapper{
    align-items: center;
}
.certificate .certificate-item{
    cursor: pointer;
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}
.certificate .certificate-item .certificate-img-wrap{
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.certificate .certificate-item .certificate-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.certificate .certificate-nav{
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
.certificate .certificate-nav::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 12px;
    width: 17px;
    height: 17px;
    border-top: 3px solid #D1D1D1;
    border-left: 3px solid #D1D1D1;
}
.certificate .certificate-nav:hover::before{
    border-color: #ea222d;
}
.certificate .certificate-button-prev{
    left: 0;
    transform: translateY(-50%);
}
.certificate .certificate-button-prev::before{
    transform: rotate(-45deg);
}
.certificate .certificate-button-next{
    right: 0;
    transform: translateY(-50%);
}
.certificate .certificate-button-next::before{
    left: 7px;
    transform: rotate(135deg);
}
.certificate .certificate-pagination{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.certificate .certificate-pagination .swiper-pagination-bullet{
    margin: 0;
    width: 32px;
    height: 5px;
    border-radius: 0;
    color: transparent;
    font-size: 0;
    line-height: 5px;
    background-color: #CFCFCF;
    opacity: 1;
}
.certificate .certificate-pagination .swiper-pagination-bullet-active{
    color: transparent;
    font-size: 0;
    background-color: #1D63B8;
}
.certificate-preview{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
    background-color: rgba(0, 0, 0, 0.78);
}
.certificate-preview.active{
    display: flex;
}
.certificate-preview-content{
    max-width: 72vw;
}
.certificate-preview-content img{
    display: block;
    width: auto;
    height: 86vh;
    max-width: 72vw;
    object-fit: contain;
    background-color: #FFFFFF;
    box-shadow: 0 0 18px 2px rgba(0, 0, 0, 0.3);
}
.certificate-preview-close,
.certificate-preview-arrow{
    position: absolute;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}
.certificate-preview-close{
    top: 24px;
    right: 36px;
    width: 34px;
    height: 34px;
}
.certificate-preview-close::before,
.certificate-preview-close::after{
    content: '';
    position: absolute;
    top: 16px;
    left: 2px;
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
}
.certificate-preview-close::before{
    transform: rotate(45deg);
}
.certificate-preview-close::after{
    transform: rotate(-45deg);
}
.certificate-preview-arrow{
    top: 50%;
    width: 44px;
    height: 44px;
    border-top: 4px solid rgba(255, 255, 255, 0.75);
    border-left: 4px solid rgba(255, 255, 255, 0.75);
}
.certificate-preview-arrow:hover{
    border-color: #FFFFFF;
}
.certificate-preview-prev{
    left: 52px;
    transform: translateY(-50%) rotate(-45deg);
}
.certificate-preview-next{
    right: 52px;
    transform: translateY(-50%) rotate(135deg);
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .certificate{
        width: 900px;
        margin: 60px auto;
    }
    .certificate .certificate-item{
        height: 340px;
    }
}
@media only screen and (max-width: 1000px) {
    .certificate{
        width: 700px;
        margin: 40px auto;
    }
    .certificate .certificate-carousel{
        margin-top: 24px;
        padding: 0 42px 28px;
    }
    .certificate .certificate-item{
        height: 280px;
    }
    .certificate .certificate-nav{
        width: 32px;
        height: 32px;
    }
    .certificate .certificate-nav::before{
        top: 8px;
        left: 10px;
        width: 14px;
        height: 14px;
    }
    .certificate .certificate-button-next::before{
        left: 6px;
    }
    .certificate-preview{
        padding: 50px 60px;
    }
    .certificate-preview-content{
        max-width: 78vw;
    }
    .certificate-preview-content img{
        height: 80vh;
        max-width: 78vw;
    }
    .certificate-preview-close{
        top: 18px;
        right: 24px;
    }
    .certificate-preview-prev{
        left: 24px;
    }
    .certificate-preview-next{
        right: 24px;
    }
}

.home-case{
    max-width: 1400px;
    width: 94%;
    margin: 80px auto;
}
.home-case-carousel{
    margin-top: 40px;
    position: relative;
}
.home-case-swiper{
    overflow: hidden;
}
.home-case .case-list{
    display: flex;
}
.home-case .case-list .case-item{
    width: auto;
    margin-right: 0;
    padding-bottom: 5px;
    border-bottom: none;
    margin-top: 0;
}
.home-case .case-list .case-item .case-item-img{
    width: 100%;
    aspect-ratio: 386 / 280;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.home-case .case-list .case-item .case-item-img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: skewX(-25deg);
}
.home-case .case-list .case-item:hover .case-item-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.home-case .case-list .case-item .case-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-case .case-list .case-item .case-item-content{
    padding: 25px 20px;
    margin-top: -100px;
    margin-left: 8%;
    margin-right: 0;
    position: relative;
    z-index: 10;
    border: 1px solid #eee;
    border-top: none;
    border-right: none;
        background: #FFFFFF;
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
}
.home-case .case-list .case-item .case-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    margin-top: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.home-case .case-list .case-item .case-item-desc{
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.home-case .case-list .case-item .case-item-more {
    font-size: 13px;
    color: #f39c12;
    margin-top: 15px;
    display: block;
    font-weight: 500;
}
.home-case-button-prev,
.home-case-button-next{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dbe4f0;
    background: #fff;
    position: absolute;
    top: calc(50% - 38px);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}
.home-case-button-prev{
    left: -18px;
}
.home-case-button-next{
    right: -18px;
}
.home-case-button-prev::after,
.home-case-button-next::after{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0d57b7;
    border-right: 2px solid #0d57b7;
    position: absolute;
    top: 50%;
    left: 50%;
}
.home-case-button-prev::after{
    transform: translate(-40%, -50%) rotate(-135deg);
}
.home-case-button-next::after{
    transform: translate(-60%, -50%) rotate(45deg);
}
.home-case-pagination{
    margin-top: 18px;
    text-align: center;
}
.home-case-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #c7d2e3;
    opacity: 1;
}
.home-case-pagination .swiper-pagination-bullet-active{
    background: #0d57b7;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .home-case{
        width: 900px;
        margin: 60px auto;
    }
    .home-case-carousel{
        margin-top: 30px;
    }
    .home-case .case-list .case-item{
        padding-bottom: 15px;
        margin-top: 0;
    }
    .home-case .case-list .case-item .case-item-img{
        border-radius: 8px;
    }
    .home-case .case-list .case-item .case-item-title{
        font-size: 16px;
        margin-top: 6px;
    }
    .home-case .case-list .case-item .case-item-desc{
        font-size: 13px;
        margin-top: 6px;
    }
}

@media only screen and (max-width: 1000px) {
    .home-case{
        width: 700px;
        margin: 40px auto;
    }
    .home-case-carousel{
        margin-top: 20px;
    }
    .home-case .case-list .case-item{
        padding-bottom: 10px;
        margin-top: 0;
    }
    .home-case .case-list .case-item .case-item-img{
        border-radius: 6px;
    }
    .home-case .case-list .case-item .case-item-title{
        font-size: 14px;
        margin-top: 2px;
    }
    .home-case .case-list .case-item .case-item-desc{
        font-size: 12px;
        margin-top: 2px;
    }
    .home-case-button-prev,
    .home-case-button-next{
        display: none;
    }
}

.news{
    max-width: 1400px;
    width: 94%;
    margin: 80px auto;
}
.home-news-carousel{
    margin-top: 40px;
    position: relative;
}
.home-news-swiper{
    overflow: hidden;
}
.news-list{
    display: flex;
}
.news-list .news-item{
    width: auto;
    margin-right: 0;
}
.news-list .news-item .news-item-img{
    width: 100%;
    aspect-ratio: 558 / 345;
}
.news-list .news-item .news-item-img img{
    width: 100%;
    height: 100%;
}
.news-list .news-item .news-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    margin-top: 10px;
}
.news-list .news-item .news-item-desc{
    font-size: 16px;
    color: #666666;
    margin-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-list .news-item:hover .news-item-title{
    color: #ea222d;
}
.home-news-button-prev,
.home-news-button-next{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dbe4f0;
    background: #fff;
    position: absolute;
    top: calc(50% - 38px);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}
.home-news-button-prev{
    left: -18px;
}
.home-news-button-next{
    right: -18px;
}
.home-news-button-prev::after,
.home-news-button-next::after{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0d57b7;
    border-right: 2px solid #0d57b7;
    position: absolute;
    top: 50%;
    left: 50%;
}
.home-news-button-prev::after{
    transform: translate(-40%, -50%) rotate(-135deg);
}
.home-news-button-next::after{
    transform: translate(-60%, -50%) rotate(45deg);
}
.home-news-pagination{
    margin-top: 18px;
    text-align: center;
}
.home-news-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #c7d2e3;
    opacity: 1;
}
.home-news-pagination .swiper-pagination-bullet-active{
    background: #0d57b7;
}

.faq{
    max-width: 1400px;
    width: 94%;
    margin: 80px auto;
}
.faq .title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #1A1A1A;
}
.faq-wrap{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
/* Left Side (35%) */
.faq-contact{
    width: 35%;
    position: relative;
    color: #fff;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
}
.faq-contact-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top right, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.4) 70%, rgba(10, 10, 10, 0.1) 100%);
    z-index: 1;
}
.faq-contact-content {
    position: relative;
    z-index: 2;
}
.faq-contact-title{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
}
.faq-contact-desc{
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #e5e7eb;
}
.faq-contact-btn{
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    padding: 16px 32px;
    background: #ea222d;
    box-shadow: 0 4px 14px rgba(234, 34, 45, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.faq-contact-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 8px;
}
.faq-contact-btn:hover{
    background: #ff2b37;
    box-shadow: 0 6px 20px rgba(234, 34, 45, 0.4);
    color: #fff;
}
.faq-contact-btn:hover span {
    transform: translateX(6px);
}

/* Right Side (65%) */
.faq-list{
    width: 60%;
}
.faq-item{
    background: transparent;
    border-bottom: 1px solid #eaeaea;
    padding: 28px 0;
}
.faq-item:first-child{
    border-top: 1px solid #eaeaea;
}
.faq-question{
    font-size: 18px;
    color: #1A1A1A;
    font-weight: bold;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    transition: color 0.3s;
}
.faq-item:hover .faq-question {
    color: #1A1A1A; /* removed red hover */
}
.faq-index {
    color: #4B5563;
    font-size: 16px;
    font-weight: bold;
    width: 36px;
    flex-shrink: 0;
    padding-top: 2px;
}
.faq-text {
    flex: 1;
}
.faq-toggle {
    font-style: normal;
    color: #1A1A1A;
    font-size: 28px;
    line-height: 1;
    margin-left: 20px;
    font-weight: 300;
    transition: transform 0.3s, color 0.3s;
}
.faq-item.active .faq-toggle {
    color: #4B5563;
    transform: rotate(90deg);
}

.faq-answer{
    display: none;
    margin-top: 15px;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.8;
    padding-left: 36px; /* perfectly aligns with faq-text due to faq-index width 36px */
}
.faq-item.active .faq-answer{
    display: block;
}
    color: #1E63C7;
    text-decoration: none;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .news{
        width: 900px;
        margin: 60px auto;
    }
    .home-news-carousel{
        margin-top: 24px;
    }
    .news-list .news-item .news-item-title{
        font-size: 16px;
        margin-top: 5px;
    }
    .news-list .news-item .news-item-desc {
        font-size: 14px;
        margin-top: 0;
    }

    .faq{
        width: 90%;
        margin: 60px auto;
    }
    .faq .title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .faq-contact{
        width: 35%;
        padding: 40px 20px;
    }
    .faq-list{
        width: 62%;
    }
    .faq-item{
        padding: 18px 0;
    }
    .faq-question{
        font-size: 16px;
    }
    .faq-toggle{
        font-size: 24px;
        margin-left: 16px;
    }
    .faq-answer{
        margin-top: 10px;
        font-size: 14px;
        padding-left: 32px;
    }
    .faq-contact-title{
        font-size: 24px;
    }
    .faq-contact-desc{
        font-size: 14px;
    }
    .faq-contact-btn{
        margin-top: 20px;
        font-size: 13px;
        padding: 10px 20px;
    }
}
@media only screen and (max-width: 1000px) {
    .news{
        width: 700px;
        margin: 40px auto;
    }
    .home-news-carousel{
        margin-top: 20px;
    }
    .news-list .news-item .news-item-title{
        font-size: 15px;
        margin-top: 5px;
    }
    .news-list .news-item .news-item-desc {
        font-size: 13px;
        margin-top: 0;
    }
    .home-news-button-prev,
    .home-news-button-next{
        display: none;
    }
    .faq{
        width: 100%;
        padding: 0 5%;
        margin: 40px auto;
    }
    .faq .title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .faq-wrap{
        flex-direction: column;
        gap: 30px;
    }
    .faq-contact{
        width: 100%;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }
    .faq-list{
        width: 100%;
    }
    .faq-item{
        padding: 15px 0;
    }
    .faq-question{
        font-size: 16px;
    }
    .faq-index{
        font-size: 14px;
        margin-right: 12px;
    }
    .faq-toggle{
        font-size: 24px;
        margin-left: 10px;
    }
    .faq-answer{
        font-size: 14px;
        padding-left: 26px;
    }
    .faq-contact-title{
        font-size: 22px;
    }
    .faq-contact-desc{
        font-size: 14px;
    }
    .faq-contact-btn{
        margin-top: 20px;
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* ===== HOME BOTTOM QUOTE FORM (REGENERATED) ===== */
.home-collect {
    width: 100%;
    background-color: #fdfaf4;
    padding: 80px 0;
}

.home-collect-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.home-collect-left {
    width: 45%;
    padding-right: 40px;
}

.home-collect-left .intro-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.home-collect-left .intro-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.home-collect-left .intro-list {
    margin: 0;
    padding: 0;
}

.home-collect-left .intro-list li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    list-style: none;
    display: flex;
    align-items: center;
}

.home-collect-left .intro-list li::before {
    content: '\2714';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #f19a0a;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.home-collect-form-section {
    width: 45%;
}

.home-collect-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-collect-field {
    width: 100%;
}

.home-collect-field label {
    display: none;
}

.home-collect-form input, .home-collect-form textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.15s ease-in-out;
}

.home-collect-form input {
    height: 52px;
}

.home-collect-form textarea {
    height: 150px;
    resize: vertical;
}

.home-collect-form input:focus, .home-collect-form textarea:focus {
    border-color: #f19a0a;
}

.home-collect-submit {
    width: auto;
    align-self: flex-start;
    height: 50px;
    background-color: #f19a0a;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
    text-align: center;
    padding: 0 40px;
    cursor: pointer;
    transition: all 0.3s;
}

.home-collect-submit:hover {
    background-color: #d88a09;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 154, 10, 0.3);
}

@media only screen and (max-width: 1200px) {
    .home-collect-container {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 991px) {
    .home-collect-container {
        flex-direction: column;
    }
    .home-collect-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .home-collect-form-section {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .home-collect-container {
        padding: 0 20px;
    }
    .home-collect-left .intro-title {
        font-size: 28px;
    }
}


/* old */

.home-case .case-list.home-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media only screen and (max-width: 1000px) {
    .home-case .case-list.home-case-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .home-case .case-list.home-case-grid {
        grid-template-columns: 1fr;
    }
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.news-header .title {
    margin: 0;
    font-size: 42px;
    font-family: 'Rubik', sans-serif;
    line-height: 1em;
    font-weight: 500;
    color: #3D3D3D;
    text-transform: uppercase;
}
.news-header .all-news-btn {
    background-color: #d32f2f;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.news-header .all-news-btn:hover {
    background-color: #b71c1c;
}
.home-news-split {
    display: flex;
    gap: 40px;
}

@media only screen and (max-width: 992px) {
    .home-news-split {
        flex-direction: column-reverse;
    }
}

.home-news-text-swiper .news-text-slide {
    height: auto !important;
    transition: all 0.3s;
}
.home-news-text-swiper .swiper-slide-active {
    
}
.home-news-text-swiper .news-text-title {
    color: #3D3D3D;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}
.home-news-text-swiper .swiper-slide-active .news-text-title {
    color: #d32f2f !important;
}
.home-news-text-swiper .news-text-desc {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0 !important;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
    overflow: hidden;
}
.home-news-text-swiper .swiper-slide-active .news-text-desc {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 10px !important;
}

/* Premium Choose Section */
.premium-choose-section {
    position: relative;
    background-color: #181818;
    padding: 100px 5%;
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.premium-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}
.premium-choose-header {
    margin-bottom: 50px;
    max-width: 800px;
}
.premium-choose-subtitle {
    color: #0056b3;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.premium-choose-subtitle::before {
    content: "//";
    margin-right: 10px;
    color: #0056b3;
}
.premium-choose-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}
.premium-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.premium-choose-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    align-items: flex-start;
}
.premium-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.choose-icon-wrap {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.choose-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.choose-content-wrap {
    flex-grow: 1;
}
.choose-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    text-transform: uppercase;
}
.choose-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.premium-choose-footer {
    text-align: center;
}

@media (max-width: 992px) {
    .premium-choose-grid {
        grid-template-columns: 1fr;
    }
    .premium-choose-title {
        font-size: 32px;
    }
}

/* Premium Explore Button with Cool Effects */
.premium-explore-btn {
    position: relative;
    display: inline-block;
    background: #003380;
    color: #ffffff;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid #0056b3;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border-radius: 4px;
}

.premium-explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #0056b3;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.premium-explore-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 2;
    opacity: 0;
}

.premium-explore-btn:hover {
    color: #fff;
    border-color: #0056b3;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.5);
    transform: translateY(-3px);
    text-decoration: none;
}

.premium-explore-btn:hover::before {
    width: 100%;
}

.premium-explore-btn:hover::after {
    left: 120%;
    opacity: 1;
}
