
/* --- Hero Section --- */
.hero {
    position: relative;
}

.hero .swiper-slide {
    position: relative;
}

.hero .swiper-slide .pic img {
    display: block;
    width: 100%;
    min-height: 340px;
    object-fit: cover;
}

.hero .swiper-slide .slide-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: Montserrat-Bold;
}

.hero-content .des {
    font-size: 1.5rem;
    margin-bottom: 30px;
    width: 600px;
    max-width: 100%;
    /* font-size: 24px; */
    color: #FFFFFF;
    line-height: 1.5;
}

.hero-content .btn {
    padding: 0 19px;
    border-radius: 25px;
    line-height: 43px;
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: #EE6F10;
    gap: 7px;
}

.hero-content .btn .iconfont {
    font-weight: bold;
    transition: all .3s;
}

.hero-content .btn:hover .iconfont {
    transform: rotate(45deg);
}

.hero-content .btn-light {
    background: var(--white);
    color: rgba(238, 111, 16, 1);
}

.hero-content .btn-light:hover {
    background: var(--accent-color);
    color: var(--white);
}

.hero .swiper-pagination {
    bottom: 30px;
}

.hero .swiper-pagination-bullet {
    /* background: #fff; */
}

/* --- Products Section --- */
.products {
    padding: 120px 0;
    background: #fff;
}

/* --- Industries Section --- */
.industries {
    padding: 120px 0;
    background: url(../img/industries-bg.jpg);
    background-size: cover;
}

.industry-grid {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; */
}

.ind-item {
    width: 440px;
    height: 500px;
    /* height: 400px; */
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #333;
}

.ind-item:not(:last-child) {
    margin-right: 77px;
}

.ind-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 40px;
    background: rgba(0, 0, 0, 0);
    color: var(--white);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ind-item:hover .ind-overlay {
    background: rgba(0, 0, 0, 0.58);
}

.ind-overlay .ind-icon-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ind-overlay .ind-icon-title .icon {
    width: 26px;
}

.ind-overlay h3 {
    font-size: 1.5em;
    flex: 1;
    margin-right: 20px;
}

.ind-overlay .des {
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 25px;
    opacity: 0;
    transition: all .3s;
}

.ind-overlay .more {
    margin-top: 30px;
    opacity: 0;
    transition: all .3s;
}

.ind-item:hover .ind-overlay .des,
.ind-item:hover .ind-overlay .more {
    opacity: 1;
}

.ind-overlay .more .iconfont {
    font-weight: bold;
}

.industries .swiper-scrollbar {
    position: relative;
    top: 0;
    margin-top: 57px;
    height: 3px;
    background-color: #fff;
    width: 1400px;
    max-width: 94%;
}

.industries .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: var(--accent-color);
}

/* --- News Center --- */
.news {
    padding: 120px 0;
}

.news-main {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-main img {
    width: 100%;
    border-radius: 5px;
    margin-top: 20px;
    object-fit: cover;
    height: 250px;
}

.news-sub {
    flex: 1;
    display: flex;
    gap: 20px;
}

.news-grid {
    position: relative;
}

.news-card:not(:last-child) {
    margin-right: 1.68%;
}

/* --- Projects --- */
.projects {
    padding: 120px 0;
    background: RGBA(246, 248, 249, 1);
}
.projects .swiper-wrapper,
.projects .swiper-slide{
    height: auto;
}
.projects-wrapper{
    position: relative;
}
.projects-wrapper .btn{
    position: absolute;
    top: 50%;
    color: RGBA(231, 232, 234, 1);
    transition: all .6s;
    cursor: pointer;
}
.projects-wrapper .btn:not(.swiper-button-disabled):hover{
    color: var(--accent-color);
}
.projects-wrapper .btn.swiper-button-disabled{
    opacity: .3;
    cursor: not-allowed;
}
.projects-wrapper .btn .iconfont{
    font-size: 30px;
}
.projects-wrapper .btn-prev{
    left: 0;
    transform: translate(-150%, -50%);
}
.projects-wrapper .btn-next{
    right: 0;
    transform: translate(150%, -50%);
}
/* --- Partners --- */
.partners {
    padding: 120px 0;
}

/* --- FAQ & Contact --- */
.faq-contact {
    padding: 120px 0;
    background: url(../img/faq-contact-bg.jpg);
    background-size: cover;
}

.fc-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
/* --- Responsive --- */
@media (max-width:1600px) {
    .news .news-list{
        padding: 0 50px;
    }
    .projects-wrapper{
        margin: 0 50px;
    }
    .ind-item:not(:last-child){
        margin-right: 57px;
    }
}
@media (max-width:1500px) {
    .news .news-list{
        padding: 0 70px;
    }
    .projects-wrapper{
        margin: 0 70px;
    }
    .ind-item:not(:last-child){
        margin-right: 40px;
    }
}
@media (max-width:1440px) {
    .hero-content h1{
        font-size: 2em;
        margin-bottom: .4em;
    }
    .hero-content .des{
        font-size: 1.2em;
    }
    .stats-grid{
        gap: 10px 25px;
    }
}
@media (max-width:1280px) {
    .about-text .more{
        margin-top: 30px;
    }
    .news-card{
        width: 48.5%;
    }
    .news-card:not(:last-child){
        margin-right: 3%;
    }
}
@media (max-width: 1199px) {
    .ind-overlay{
        padding: 40px 30px;
    }
    .ind-item{
        width: 400px;
        height: 454px;
    }
    .ind-overlay h3{
        font-size: 1.2em;
    }
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-contact,
    .partners,
    .projects,
    .news,
    .value-props,
    .industries,
    .products{
        padding: 90px 0;
    }
    .industries .swiper-pagination{
        margin-top: 45px;
    }
}
@media (max-width: 1024px) {
    .ind-item{
        width: 360px;
        height: 408px;
    }
    .faq-contact,
    .partners,
    .projects,
    .news,
    .value-props,
    .industries,
    .products{
        padding: 80px 0;
    }
    .ind-overlay .ind-icon-title{
        gap: 10px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .ind-item:not(:last-child){
        margin-right: 30px;
    }
    .industries .swiper-pagination{
        margin-top: 40px;
    }
    .fc-wrapper {
        flex-direction: column;
    }
    .contact-form,
    .faq-section{
        width: 100%;
    }
    .contact-form{
        margin-top: 40px;
    }
}
@media (max-width: 992px) {
    .hero-content .btn{
        padding: 0 13px;
        line-height: 38px;
    }
    .hero-content h1 {
        font-size: 1.5em;
    }
    .hero-content .des{
        font-size: 1em;
        margin-bottom: 1.2em;
    }
}

@media (max-width: 768px) {
    .contact-form{
        margin-top: 35px;
    }
    .news-date{
        margin: 15px 0 30px;
    }
    .news-card h4{
        height: auto;
        -webkit-line-clamp: 1;
    }
    .news-card{
        width: 100%;
    }
    .industries .swiper-pagination{
        margin-top: 30px;
    }
    .faq-contact,
    .partners,
    .projects,
    .news,
    .value-props,
    .industries,
    .products{
        padding: 70px 0;
    }
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ind-item{
        width: 330px;
        height: 371px;
    }
    .ind-overlay .more{
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .contact-form{
        margin-top: 30px;
    }
    .projects-wrapper .btn-prev{
        transform: translate(-125%, -50%);
    }
    .projects-wrapper .btn-next{
        transform: translate(125%, -50%);
    }
    .projects-wrapper{
        margin: 0 40px;
    }
    .news .news-list{
        padding: 0 50px;
    }
    .about-text .more{
        margin-top: 20px;
    }
    .stats-grid{
        margin-top: 15px;
    }
    .ind-overlay h3{
        font-size: 1em;
    }
    .ind-overlay{
        padding: 30px 25px;
    }
    .industries .swiper-pagination{
        margin-top: 25px;
    }
    .faq-contact,
    .partners,
    .projects,
    .news,
    .value-props,
    .industries,
    .products{
        padding: 60px 0;
    }
    .hero-content h1{
        font-size: 1.2em;
        margin-bottom: .3em;
    }
    .hero-content .des{
        font-size: .9em;
    }
    .hero-content .btn{
        font-size: 12px;
    }
}