
/*-----------------End Menu-------------------*/

/*-----------------Banner-------------------*/
.banner {
    position: relative;
    width: 100%;
    height:480px;
    padding: 40px 00px;
    overflow: hidden;
    gap: 10px;
}
.banner .banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 821.32px;
    object-fit: cover;
    z-index: 1;
}

.banner-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    z-index: 2;
    color: white;
    text-align: left;
    flex-wrap: wrap;
}

.banner-content-left {
    max-width: 50%;
    padding-right: 20px;
}

.banner-content-left .title {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.banner-content-left p {
    font-size: 32px;
    margin: 10px 0;
    line-height: 1.4;
    font-weight: 400;
}

.banner-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.banner-content-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
}
@media (max-width: 1024px) {
    .banner {
        height: 380px;
    }

    .banner-content-left .title {
        font-size: 36px;
    }

    .banner-content-left p {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .banner-content-left {
        width: 100%;
        margin-bottom: 20px;
    }

    .banner-content-left .title {
        font-size: 30px;
    }

    .banner-content-left p {
        font-size: 16px;
    }

    .banner-content-right img {
        width: 100%;
        max-width: 300px;
    }
}

/*-------------End banner----------*/

/*-------------Introduction----------*/
.introduction {
    margin-top: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 100px;
}
.introduction-left {
    height: 100%;
    flex: 1;
    overflow-y: auto;
}

.introduction-left .intro-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 40px;
    position: relative;
    height: 37px;
    padding-left: 10px;
}

.introduction-left .intro-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary);
}

.introduction-left h2 {
    font-size: 28px;
    color: var(--text);
    line-height: 33.89px;
    margin-bottom: 20px;
}

.introduction-left p {
    font-size: 16px;
    color: #555;
    font-weight: 400;
    line-height: 19.36px;
    margin-bottom: 20px;
}
.introduction-btn{
    align-items: end;
    color: white;
    background-color: var(--primary);
    line-height: 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.introduction-btn:hover {
    background-color: #0056b3;
}

.introduction-right {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1;
}

.introduction-right .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url("../../images/home/introduction.png") no-repeat center;
    background-size: cover;
    border-radius: 9px;
}
.introduction-right .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.introduction-right .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.introduction-right .play-button img {
    width: 50px;
    height: 50px;
}

#videoContainer {
    width: 100%;
    height: 100%;
}

#videoFrame {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .introduction {
        flex-direction: column;
        height: auto;
        margin-top: 40px;
        gap: 10px;
    }
    .introduction-left, .introduction-right {
        width: 100%;
    }
    .introduction-left {
        margin-bottom: 20px;
    }
    .introduction-left h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .introduction-left p {
        font-size: 14px;
        line-height: 18px;
    }
    .introduction-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    .introduction-right .play-button {
        width: 60px;
        height: 60px;
    }
    .introduction-right{
        flex: none;
    }
    .introduction-right .play-button img {
        width: 40px;
        height: 40px;
    }
}
/*-------------EndIntroduction----------*/



/*-------------Service----------*/
.service {
    margin-top: 80px;
}
.service-content {
    margin-bottom: 20px;
}
.service-title p {
    display: flex;
    align-items: center;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    height: 37px;
    padding-left: 10px;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}
.service-title p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}
.container-title2 {
    color: var(--primary);
    line-height: 1.5;
    font-size: 24px;
    font-weight: 500;
}
.service-item {
    border-radius: 8px;
    margin-bottom: 32px;
}
.service-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.service-card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.service-text {
    height: 121px;
    padding: 20px 12px 24px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-text p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-text .link {
    color: var(--a);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.service-text .link:hover {
    color: var(--secondary);
}
@media(max-width: 768px) {
    .service{
        margin-top: 50px;
    }
}
/*-------------End Service----------*/


/*-------------Customer----------*/
.customer {
    margin-top: 80px;
}
.customer-title {
    text-align: center;
    margin-bottom: 40px;
}
.customer-title p {
    font-size: 36px;
    line-height: 43.57px;
}
.customer-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
}
.customer-logo-col {
    width: calc(100% / 10);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: relative;
}
.customer-logo-col::before {
    content: '';
    display: block;
    position: absolute;
    top: 25%;
    right: 0;
    height: 50%;
    border-right: 1px solid #D8DEE3;
}
.customer-logo-col::after {
    content: '';
    display: block;
    position: absolute;
    left: 25%;
    bottom: 0;
    width: 50%;
    border-bottom: 1px solid #D8DEE3;
}
.customer-logo-col .logo-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.row > div:nth-child(10n) {
    border-right: none;
}
.row > div:nth-last-child(-n+10) {
    border-bottom: none;
}
.service-item {
    border-radius: 8px;
    margin-bottom: 32px;
}
.service-card {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: box-shadow 0.3s ease-in-out;
}
.service-text {
    height: 121px;
    padding: 20px 12px 24px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-text-top {
    margin: 0;
    padding: 0;
    align-self: flex-start;
}
.service-text-bottom {
    align-self: flex-start;
    margin-top: auto;
}
@media (max-width: 1200px) {
    .customer-logo-col {
        width: calc(100% / 10);
    }
}

@media (max-width: 768px) {
    .customer-logo-col {
        width: calc(100% / 5);
    }
    .customer-title p {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .customer-logo-col {
        width: calc(100% / 4);
    }
}
/*-------------End Customer----------*/

/*-------------Contact----------*/
.contact {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
}
.contact-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    background: url("../../images/home/contact1.png") no-repeat center;
    background-size: cover;
}
.contact-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    overflow: hidden;
}
.contact-right-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #388C68;
}
.contact-right-background img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-right .contact-form {
    position: relative;
    padding: 32px 20px;
    background-color: #F6F9FC;
    border-radius: 12px;
    width: 100%;
    height: 100%;
}
.contact-form .form-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
}
.contact-form hr {
    border: 1px solid #D3D3D3;
    margin: 20px 0;
}
.contact-form .form-control {
    border-radius: 4px;
    gap: 10px;
    border: 1px solid #607289;
}
.form-control{
    height: 48px;
}
textarea.form-control{
    height: 100px;
    resize: none;
}
.form-control::placeholder {
    font-weight: 400;
    color: #061021;
}
.contact-form .btn {
    background-color: #1852A4;
    padding: 12px 16px;
    border-radius: 8px;
    gap: 10px;
    border: 1px;
    color: white;
}
.form-content{
    width: 100%;
}
.form-content div{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
    margin-bottom: 20px;
}
.form-content div textarea{
    grid-column:span 2;
}
.form-content .btn{
    width: 123px;
}
@media screen and (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-left {
        height: 50%;
    }

    .contact-right {
        padding: 20px;
    }
    .form-control::placeholder {
        font-weight: 400;
        color: #061021;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .form-control::placeholder {
        font-weight: 400;
        color: #061021;
        font-size: 14px;
    }
    .form-content div{
        display: flex;
        flex-direction: column;
        gap:15px;
        margin-bottom: 15px;
    }
    .contact-form {
        padding: 20px;
        width: 100%;
    }
    .contact-form .form-title {
        font-size: 20px;
    }
    .contact-right {
        padding: 16px;
    }
    .contact-left {
        height: 40%;
    }
}

@media screen and (max-width: 576px) {
    .contact {
        flex-direction: column;
    }
    .contact-left {
        display: none;
    }
    .contact-right {
        padding: 12px;
    }
    .contact-form .form-title {
        font-size: 18px;
    }
    .contact-form {
        padding: 16px;
    }
    .form-control {
        font-size: 14px;
    }
    .contact-form .btn {
        padding: 10px;
        font-size: 14px;
    }
    .form-control::placeholder {
        font-weight: 400;
        color: #061021;
        font-size: 14px;
    }
}


/*-------------End Contact----------*/




