:root {
    --primary-blue     : #009CD0;
    --primary-blue-dark: #1d4ed8;
    --text-dark        : #333;
    --text-light       : #666;
    --border-color     : #e5e7eb;
}
body {
    position: relative;
}
.modal-body {
    max-height: 75vh;
    overflow-y: auto;
}
.modal-content {
    height: 100%;
}
#editHeaderBtn {
    display: none;
}
#adminDropdownMenuButton {
    display: none;
}

@media (max-width: 450px) {
    .btn-learn-more, .btn-our-services {
        width: 100% !important;
        
    }
}

.card {
    border: none !important;
}

* {
    margin    : 0;
    padding   : 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 0;
}

.hero-section {
    position  : relative;
    height    : 100vh;
    min-height: 600px;
    overflow  : visible;
}

.hero-carousel {
    height  : 100%;
    overflow: hidden;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item {
    background-size    : cover;
    background-position: center;
    background-repeat  : no-repeat;
    position           : relative;
    transition         : opacity 0.6s ease-in-out;
}

.hero-carousel .carousel-item img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    animation : zoomIn 25s ease-in-out infinite;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hero-carousel .carousel-item.active {
    opacity: 1;
}

.hero-overlay {
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index   : 1;
}

.hero-content {
    position : absolute;
    top      : 50%;
    left     : 100px;
    transform: translateY(-50%);
    z-index  : 2;
    color    : #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity  : 0;
        transform: translateY(-40%);
    }

    to {
        opacity  : 1;
        transform: translateY(-50%);
    }
}

.hero-content h1 {
    animation      : fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity        : 0;
    /* bắt đầu ẩn */
}

.hero-content h2 {
    animation      : fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity        : 0;
}

.hero-content p {
    animation      : fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity        : 0;
}

.hero-buttons {
    animation      : fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.1s;
    opacity        : 0;
}


.hero-content h1 {
    font-size    : 3rem;
    font-weight  : 700;
    line-height  : 1.2;
    margin-bottom: 20px;
    color        : #ffffff;
    text-shadow  : 2px 2px 4px rgba(0, 0, 0, 0.5);
    width        : 53%;
}

.hero-content h2 {
    font-size    : 3.5rem;
    font-weight  : 600;
    line-height  : 1.2;
    margin-bottom: 30px;
    color        : #ffffff;
    text-shadow  : 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size    : 1.1rem;
    line-height  : 1.8;
    margin-bottom: 40px;
    color        : #ffffff;
    text-shadow  : 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width    : 50%;
}

.hero-buttons {
    display  : flex;
    gap      : 20px;
    flex-wrap: wrap;
}

.btn-learn-more {
    background         : linear-gradient(to left, var(--primary-blue) 0%, var(--primary-blue) 50%, white 50%, white 100%);
    background-size    : 250% 120%;
    background-position: right bottom;
    color              : #ffffff;
    border             : none;
    padding            : 15px 35px;
    border-radius      : 4px;
    font-weight        : 600;
    font-size          : 16px;
    cursor             : pointer;
    display            : flex;
    align-items        : center;
    gap                : 8px;
    text-decoration    : none;
    transition         : background-position 0.4s ease-in-out, color 0.4s ease-in-out;
}

.btn-learn-more:hover {
    background-position: left bottom;
    color              : black;
    text-decoration    : none;
    font-weight        : 500;
}

.btn-our-services {
    background         : linear-gradient(to left, white 0%, white 50%, var(--primary-blue) 50%, var(--primary-blue) 100%);
    background-size    : 200% 100%;
    background-position: right bottom;
    color              : black;
    border             : none;
    padding            : 15px 35px;
    border-radius      : 4px;
    font-weight        : 600;
    font-size          : 16px;
    cursor             : pointer;
    display            : flex;
    align-items        : center;
    gap                : 8px;
    text-decoration    : none;
    transition         : background-position 0.4s ease-in-out, color 0.4s ease-in-out;
    width              : 208px;
    justify-content    : center;
}

.btn-our-services:hover {
    background-position: left bottom;
    color              : white;
    text-decoration    : none;

}

.hero-carousel .carousel-indicators {
    position      : absolute;
    right         : 40px;
    top           : 50%;
    bottom        : auto;
    left          : auto;
    transform     : translateY(-50%);
    flex-direction: column;
    margin        : 0;
    width         : auto;
    height        : auto;
    align-items   : flex-end;
}

.hero-carousel .carousel-indicators li {
    width           : 10px;
    height          : 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border          : 2px solid rgba(255, 255, 255, 0.6);
    margin          : 8px 0;
    margin-left     : 0;
    margin-right    : 0;
    text-indent     : 0;
    cursor          : pointer;
    transition      : all 0.3s ease;
    opacity         : 1;
}

.hero-carousel .carousel-indicators li.active {
    background  : #ffffff;
    border-color: #ffffff;
    width       : 24px;
    height      : 12px;
    margin      : 8px 0;
}

.hero-carousel .carousel-indicators li:hover {
    border-color: rgba(255, 255, 255, 1);
    background  : rgba(255, 255, 255, 0.3);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    display: none;
}

.we-section {
    padding : 60px 0px;
    position: relative;
}

.recruitment-content {
    display    : flex;
    align-items: center;
    gap        : 15px;
    color      : #ffffff;
    font-size  : 16px;
}

.recruitment-text {
    color: #ffffff;
}

.recruitment-link {
    color          : #ffffff;
    text-decoration: underline;
    font-weight    : 500;
    cursor         : pointer;
    transition     : color 0.3s ease;
}

.recruitment-link:hover {
    color          : #f0f0f0;
    text-decoration: underline;
}

.info-panel {
    width              : 540px;
    min-height         : 320px;
    background-color   : var(--primary-blue);
    padding            : 45px 30px;
    background-image   : url('../img/curve_box.png');
    background-size    : cover;
    background-repeat  : no-repeat;
    background-position: center bottom;
    z-index: 1;
}

.info-panel::before {
    content : "";
    position: absolute;
    top     : 0;
    left    : 0;
    right   : 0;
    bottom  : 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.info-panel-title {
    font-size     : 30px;
    font-weight   : 700;
    color         : #ffffff;
    text-transform: uppercase;
    margin-bottom : 25px;
    letter-spacing: 1px;
    position      : relative;
    z-index       : 1;
}

.info-panel-description {
    font-size    : 15px;
    line-height  : 1.8;
    color        : #ffffff;
    margin-bottom: 30px;
    position     : relative;
    z-index      : 1;
}

.info-panel-button {
    position           : absolute;
    bottom             : 30px;
    right              : 30px;
    width              : 50px;
    height             : 50px;
    border             : none;
    cursor             : pointer;
    display            : flex;
    align-items        : center;
    justify-content    : center;
    transition         : all 0.3s ease;
    z-index            : 1;
    background         : linear-gradient(to right, black 50%, white 50%);
    background-size    : 200% 100%;
    background-position: right bottom;
}

.info-panel-button:hover {
    background-position: left bottom;
}



a:hover,
a:focus {
    text-decoration: none !important;
}

.info-panel-button i {
    color     : #000000;
    font-size : 20px;
    transition: color 0.3s ease;
}

.info-panel-button:hover i {
    color: white;

}

.info-panel-wrapper {
    position: absolute;
    right   : 100px;
    bottom  : -200px;
    z-index : 1;
}

.recruitment-section {
    width       : 85%;
    height      : 120px;
    background  : rgb(0, 0, 0);
    display     : flex;
    align-items : center;
    padding-left: 100px;
    z-index     : 1;
}

.recruitment-text {
    color: #ffffffb5;
}

.recruitment-text u {
    color : #ffffff;
    cursor: pointer;
}

.wrapper {
    height: 80px;
}

.main-left h1 {
    font-size    : 2.5rem;
    font-weight  : 700;
    line-height  : 1.2;
    color        : var(--heading-color);
    margin-bottom: 10px;
}

.main-left .sub-text {
    font-size     : 16px;
    line-height   : 1.6;
    color         : #666666;
    margin-top    : 20px;
    /* font-weight: 500; */
}

.main-left p {
    font-size  : 16px;
    line-height: 1.6;
    color      : #666666;
    margin-top : 20px;
}

.main-left .sub-text {
    margin-bottom: 0;
}

.read-more-btn {
    background         : linear-gradient(to left, var(--primary-blue) 0%, var(--primary-blue) 50%, black 50%, black 100%);
    background-size    : 250% 124%;
    background-position: right bottom;
    color              : #ffffff;
    border             : none;
    padding            : 10px 24px;
    border-radius      : 4px;
    font-weight        : 600;
    font-size          : 15px;
    cursor             : pointer;
    display            : flex;
    align-items        : center;
    gap                : 8px;
    text-decoration    : none;
    transition         : background-position 0.4s ease-in-out;
    width              : fit-content;
    margin-top         : 40px;
}

.read-more-btn:hover {
    background-position: left bottom;
    color              : #ffffff;
    text-decoration    : none;
    font-weight        : 500;
}

.info-panel2-wrapper {
    display: flex;
}

.info-panel2 {
    width           : 100%;
    background-color: #eff3f7;
    padding         : 30px;
    border-radius   : 8px;
    margin-top      : 15px;
}

.info-panel2 .percentage-title {
    font-size  : 27px;
    font-weight: 700;
    color      : var(--primary-blue);
    line-height: 1;
}

.info-panel2 .percentage-text {
    font-size  : 1rem;
    font-weight: 600;
    color      : var(--primary-blue);
    margin-top : 5px;
    line-height: 1.2;
    width      : 100%;
}

.info-panel2 .global-share {
    display      : flex;
    align-items  : center;
    margin-bottom: 20px;
}

.info-panel2 .icon-container {
    font-size       : 2.5rem;
    background-color: var(--primary-blue);
    margin-right    : 15px;
    min-width       : 50px;
    height          : 50px;
    display         : flex;
    align-items     : center;
    justify-content : center;
}

.globe-icon {
    color    : #ffffff;
    font-size: 28px;
}

.info-panel2 p:last-of-type {
    font-size  : 16px;
    line-height: 1.6;
    color      : #666666;
    margin-top : 20px;
}

.info-panel2 .owl-dots {
    position       : static;
    margin         : 25px 0 0 0;
    display        : flex;
    justify-content: flex-start;
}

.info-panel2 .owl-dots .owl-dot {
    width           : 10px;
    height          : 4px;
    background-color: #737c8f;
    border-radius   : 2px;
    margin-right    : 5px;
    transition      : width 0.3s ease;
}

.info-panel2 .owl-dots .owl-dot.active {
    width           : 25px;
    background-color: var(--primary-blue);
}

.service-section {
    padding            : 60px 0;
    background-color   : #eff3f7;
    text-align         : center;
    background-image   : url('../img/work2_overlay.png');
    background-repeat  : no-repeat;
    background-size    : cover;
    background-position: center;
    position           : relative;
}

.service-section .owl-carousel .owl-stage-outer {
    width    : 101% !important;
    /* height: 92vh; */
}

.service-section .container {
    align-items    : center;
    justify-content: center;
    display        : flex;
    flex-direction : column;
}

.section-title {
    font-size    : 2.5rem;
    font-weight  : 700;
    color        : var(--heading-color);
    margin-bottom: 10px;
}

.service-section .owl-carousel.service-slider .owl-dots {
    display    : none !important;
    text-align : center;
    padding-top: 15px;
}

.service-section .owl-carousel.service-slider .owl-dot {
    opacity   : 0.7;
    transition: opacity 0.3s ease;
}

.service-section .owl-carousel.service-slider .owl-dot span {
    width        : 10px;
    height       : 10px;
    margin       : 5px;
    border-radius: 0;
    background   : #555;
    display      : block;
}

.service-section .owl-carousel.service-slider .owl-dot.active {
    opacity: 1;
}

.service-section .owl-carousel.service-slider .owl-dot.active span {
    background: var(--primary-blue);
}

#service-owl-carousel .owl-stage {
    height     : 550px !important;
    padding-top: 10px !important;
}

.section-subtitle {
    font-size    : 17px;
    color        : #666;
    margin-bottom: 50px;
    max-width    : 750px;
    margin-left  : auto;
    margin-right : auto;
    position     : relative;
}

.service-section .service-card .card-body {
    height         : 280px;
    display        : flex;
    flex-direction : column;
    justify-content: space-between;
}

.section-subtitle::before {
    content         : '';
    position        : absolute;
    top             : 100%;
    left            : 50%;
    transform       : translateX(-50%);
    width           : 50%;
    height          : 3px;
    background-color: #d8d8d8;
    margin-top      : 15px;
}

.section-subtitle::after {
    content         : '';
    position        : absolute;
    top             : 100%;
    left            : 50%;
    transform       : translateX(-50%);
    width           : 15%;
    height          : 3px;
    background-color: var(--primary-blue);
    margin-top      : 15px;
}

.service-card {
    background-color: #fff;
    border          : 1px solid #e0e0e0;
    overflow        : hidden;
    text-align      : left;
    height          : 100%;
    transition      : transform 0.3s, box-shadow 0.3s;
    width           : 98%;
}

.service-card::after {
    content          : "";
    display          : block;
    width            : 10px;
    background-color : #dedede;
    position         : absolute;
    top              : 20px;
    bottom           : -9px;
    right            : -3px;
    -webkit-clip-path: polygon(0 0, 100% 6px, 100% 100%, 0 100%);
    -khtml-clip-path : polygon(0 0, 100% 6px, 100% 100%, 0 100%);
    -moz-clip-path   : polygon(0 0, 100% 6px, 100% 100%, 0 100%);
    -ms-clip-path    : polygon(0 0, 100% 6px, 100% 100%, 0 100%);
    -o-clip-path     : polygon(0 0, 100% 6px, 100% 100%, 0 100%);
    clip-path        : polygon(0 0, 100% 6px, 100% 100%, 0 100%);
    transition       : all 350ms ease-in-out 0ms;
}

.service-card::before {
    content          : "";
    display          : block;
    height           : 10px;
    background-color : #dedede;
    position         : absolute;
    bottom           : -10px;
    left             : 20px;
    right            : -1px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 6px 100%);
    -khtml-clip-path : polygon(0 0, 100% 0, 100% 100%, 6px 100%);
    -moz-clip-path   : polygon(0 0, 100% 0, 100% 100%, 6px 100%);
    -ms-clip-path    : polygon(0 0, 100% 0, 100% 100%, 6px 100%);
    -o-clip-path     : polygon(0 0, 100% 0, 100% 100%, 6px 100%);
    clip-path        : polygon(0 0, 100% 0, 100% 100%, 6px 100%);
    transition       : all 350ms ease-in-out 0ms;
}

.service-card:hover::after,
.service-card:hover::before {
    background-color: var(--primary-blue);
}

.card-icon-overlay {
    display            : inline-block;
    transform-style    : preserve-3d;
    backface-visibility: hidden;
    transition         : transform 0.5s ease-in-out;
    transform          : rotateY(0deg);
}

.service-card:hover .card-icon-overlay {
    transform: rotateY(-720deg);
}

.our-service-btn {
    background         : linear-gradient(to left, var(--primary-blue) 0%, var(--primary-blue) 50%, black 50%, black 100%);
    background-size    : 250% 124%;
    background-position: right bottom;
    color              : #ffffff;
    border             : none;
    padding            : 10px 24px;
    border-radius      : 4px;
    font-weight        : 600;
    font-size          : 15px;
    cursor             : pointer;
    display            : flex;
    align-items        : center;
    gap                : 8px;
    text-decoration    : none;
    transition         : background-position 0.4s ease-in-out;
    width              : fit-content;
}

.our-service-btn:hover {
    background-position: left bottom;
    color              : #ffffff;
    text-decoration    : none;
    font-weight        : 500;
}

.card-image-container {
    position: relative;
    overflow: hidden;
}

.card-image {
    width     : 100%;
    height    : 227px;
    object-fit: cover;
    display   : block;
    /* filter : brightness(0.8); */
}

.card-icon-overlay {
    position        : absolute;
    top             : 30px;
    left            : 30px;
    background-color: var(--primary-blue);
    color           : white;
    padding         : 8px 12px;
    font-size       : 1.5rem;
}

.card-body {
    padding: 30px 25px;
}

.card-title {
    font-size    : 1.1rem;
    font-weight  : 600;
    color        : #333;
    margin-top   : 0;
    position     : relative;
    margin-bottom: 30px !important;
}

.card-body .card-title::after {
    content   : '';
    position  : absolute;
    left      : 0;
    bottom    : -15px;
    width     : 100%;
    height    : 1px;
    background: linear-gradient(to right, #0582CA 20%, #d3d3d3 20%);
}


.card-text {
    font-size    : 1rem;
    color        : #777;
    margin-bottom: 25px;
    line-height  : 1.6;
}

.read-more-link {
    color          : black;
    text-decoration: none;
    font-weight    : 600;
    font-size      : 0.95rem;
    display        : inline-flex;
    align-items    : center;
    transition     : color 0.3s;
    position       : relative;
    gap            : 10px;
}

.read-more-link .icon-arrow {
    opacity    : 0;
    transition : all 0.3s ease;
    line-height: normal;
    margin-left: -20px;

}

.read-more-link .icon-plus {
    opacity    : 1;
    transition : all 0.3s ease;
    line-height: normal;
    color      : var(--primary-blue)
}

.service-card:hover .read-more-link {
    color          : var(--primary-blue);
    text-decoration: none;
}

.service-card:hover .read-more-link .icon-plus {
    opacity: 0;
    color  : var(--primary-blue);
}

.service-card:hover .read-more-link .icon-arrow {
    opacity: 1;
    color  : var(--primary-blue);
}

.product-section {
    padding         : 60px 0;
    text-align      : center;
    background-color: #1A191D;
    background-image: url('../img/h4_crs_overlay.png');
    position        : relative;
    background-size: 100%; 
    background-position: center;
}

.product-header {
    max-width: 800px;
    margin   : 0 auto 50px auto;
}

.product-section .section-title {
    font-size    : 40px;
    font-weight  : 700;
    color        : white;
    margin-bottom: 10px;
    text-align   : center;
}

.product-container {
    padding: 0 70px;

}

.product-section .section-subtitle {
    font-size  : 17px;
    color      : white;
    line-height: 1.6;
    text-align : center;
}

.product-card {
    background-color   : #fff;
    border-radius      : 5px;
    overflow           : hidden;
    height             : 100%;
    display            : flex;
    flex-direction     : column;
    text-align         : left;
    align-items        : center;
    /* border          : 1px solid #e0e0e0; */
}

.product-image {
    width        : 100%;
    height       : 350px;
    margin-bottom: 20px;
    transition   : transform 0.5s ease;
}

#product-owl-carousel .owl-dot {
    opacity   : 0.7;
    transition: opacity 0.3s ease;
}

#product-owl-carousel .owl-dot span {
    width        : 10px;
    height       : 10px;
    margin       : 5px;
    border-radius: 0;
    background   : #555;
    display      : block;
}

#product-owl-carousel .owl-dot.active {
    opacity: 1;
}

#product-owl-carousel .owl-dots .owl-dot.active span,
#product-owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-blue) !important;
}

.product-info-wrapper {
    padding         : 15px;
    display         : flex;
    align-items     : center;
    justify-content : space-between;
    height          : 100px;
    width           : 100%;
    background-color: #eff3f7;
}

.product-info-content {
    margin-right: 10px;
    width       : 85%;
}


.product-name {
    font-size    : 17px;
    font-weight  : 700;
    color        : var(--heading-color);
    margin-bottom: 5px;
    white-space  : nowrap;
    overflow     : hidden;
    text-overflow: ellipsis;

}


.product-specs {
    font-size    : 15px;
    color        : #888;
    margin-bottom: 0;
    white-space  : nowrap;
    overflow     : hidden;
    text-overflow: ellipsis;
}

.product-link {
    width           : 35px;
    height          : 35px;
    border-radius   : 50%;
    background-color: var(--primary-blue);
    color           : #fff;
    display         : flex;
    flex-shrink     : 0;
    align-items     : center;
    justify-content : center;
    font-size       : 14px;
    transition      : background-color 0.3s;
}

.product-link:hover {
    text-decoration : none;
    background-color: var(--primary-blue);
}

.product-card:hover .product-info-wrapper {
    background-color: var(--primary-blue);
    border-color    : var(--primary-blue);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card:hover .product-name {
    color: #ffffff;
}

.product-card:hover .product-specs {
    color: #ffffff;
}

.product-card:hover .product-link {
    background-color: #ffffff;
    color           : var(--primary-blue);
}

.product-info-wrapper,
.product-name,
.product-specs,
.product-link {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

#product-owl-carousel .owl-dots {
    display: block !important;
}

.btn-view-all-projects {
    display        : inline-block;
    padding        : 10px 24px;
    border         : 1px solid white;
    color          : white;
    text-decoration: none;
    font-weight    : 600;
    font-size      : 15px;
    letter-spacing : 1px;
    transition     : all 0.3s;
    border-radius  : 4px;
}

.btn-view-all-projects:hover {
    background-color: var(--primary-blue);
    color           : #ffffff;
    text-decoration : none;
    border-color    : var(--primary-blue);
}

.why-section {
    padding         : 30px 0 60px 0;
    background-color: white;
    position        : relative;
}

.why-header-left {
    margin-bottom: 25px;
}

.mobile-dropdown .dropdown-item.open .dropdown-toggle-btn {
    color: var(--primary-blue);
}

.why-section-sub-title {
    font-size     : 15px;
    font-weight   : 600;
    color         : var(--primary-blue);
    text-transform: uppercase;
    margin-bottom : 25px;
}

.why-section-title {
    font-size    : 24px;
    font-weight  : 700;
    color        : var(--heading-color);
    line-height  : 1.2;
    margin-bottom: 10px;
}

.why-image-info-block {
    position     : relative;
    max-width    : 100%;
    border-radius: 20px;
    min-height   : 350px;
}

.why-main-img {
    width        : 85%;
    height       : auto;
    display      : block;
    border-radius: 20px;
    object-fit   : cover;
    max-height   : 450px;
}

.why-info-overlay {
    position     : absolute;
    bottom       : -77px;
    right        : 20px;
    left         : auto;
    top          : auto;
    width        : 53%;
    background   : url('../img/pp.webp') no-repeat center center / cover, var(--primary-blue);
    color        : #fff;
    padding      : 30px;
    border-radius: 15px;
    box-shadow   : 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align   : left;
    z-index      : 10;
}

.why-stats-group {
    display       : flex;
    flex-direction: column;
    gap           : 20px;
}

.why-stat-item {
    text-align: left;
    position  : relative;
}

.why-stat-number {
    font-size    : 2.2rem;
    font-weight  : 700;
    line-height  : 1.2;
    margin-bottom: 5px;
    display      : block;
}

.why-stat-text {
    font-size  : 1rem;
    line-height: 1.4;
    margin     : 0;
    color      : white;
    font-weight: 600;
}

.why-secondary-img-top {
    width        : 100%;
    height       : 200px;
    display      : block;
    border-radius: 5px 5px 0 0;
    margin-bottom: 35px;
}

.why-nav-tabs {
    width  : 100%;
    display: flex;
}

.why-nav-tabs .nav-item {
    flex-grow       : 1;
    background-color: white;
}

.why-nav-tabs .nav-item.active::before {
    content         : "";
    position        : absolute;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 3px;
    background-color: var(--primary-blue);
    z-index         : 10;
}

.why-nav-tabs .why-nav-link::after {
    content         : "";
    position        : absolute;
    top             : 50%;
    right           : 0;
    height          : 60%;
    width           : 2px;
    background-color: #61616178;
    transform       : translateY(-50%);
}

.why-nav-tabs .nav-item:last-child .why-nav-link::after {
    content: none;
}

.why-nav-tabs .nav-item.active {
    color: var(--primary-blue) !important;
}

.why-nav-tabs .nav-link.why-nav-link {
    display         : inline-block !important;
    align-items     : initial !important;
    padding         : 10px 12px !important;
    font-size       : 16px;
    font-weight     : 600;
    position        : relative;
    width           : 100%;
    background-color: #ede9e9;
}

.why-nav-tabs .nav-link.why-nav-link::before {
    content: none !important;
}

.why-tab-content {
    padding         : 20px 0 0 0;
    overflow        : hidden;
    background-color: transparent;
    max-height      : 400px;
    min-height      : 400px;
}

.why-tab-subtitle,
.why-tab-subtitle-detail {
    font-size    : 16px;
    color        : #555;
    line-height  : 1.7;
    margin-bottom: 15px;
}

.why-btn-learn-more {
    background         : linear-gradient(to left, var(--primary-blue) 0%, var(--primary-blue) 50%, black 50%, black 100%);
    background-size    : 250% 100%;
    background-position: right bottom;
    color              : #ffffff;
    border             : none;
    padding            : 10px 24px;
    border-radius      : 4px;
    font-weight        : 600;
    font-size          : 15px;
    cursor             : pointer;
    display            : flex;
    gap                : 8px;
    text-decoration    : none;
    transition         : background-position 0.4s ease-in-out;
    width              : fit-content;
    margin-top         : 40px;
}

.why-btn-learn-more i {
    margin-left: 8px;
    transition : margin-left 0.3s;
    margin-top : 4px;
}

.why-btn-learn-more:hover {
    background-position: left bottom;
    color              : #ffffff;
    text-decoration    : none;
}

.strategic-section {
    position      : relative;
    padding       : 0;
    overflow      : hidden;
    padding-bottom: 20px;
}

.strategic-wrapper {
    padding : 0;
    position: relative;
}

.strategic-content-col {
    position        : relative;
    background-color: #04598B;
    color           : #fff;
    min-height      : 600px;
    padding         : 108px 50px 80px 320px;
    width           : 85%;
    margin-right    : auto;
    border-radius   : 0 15px 15px 0;
    z-index         : 2;
}

.strategic-content-block {
    max-width: 60%;
    position : relative;
    z-index  : 3;
}

.strategic-image-wrapper {
    position     : absolute;
    top          : 50%;
    right        : -200px;
    transform    : translateY(-50%);
    width        : 35%;
    max-width    : 34%;
    z-index      : 4;
    border-radius: 15px;
    overflow     : hidden;
    box-shadow   : 0 15px 40px rgba(0, 0, 0, 0.4);
}

.strategic-img {
    width  : 100%;
    height : auto;
    display: block;
}

.strategic-title {
    font-size    : 40px;
    font-weight  : 700;
    margin-bottom: 10px;
    color        : #fff;
}

.strategic-description {
    font-size    : 1.1rem;
    line-height  : 1.9;
    margin-bottom: 20px;
    color        : rgba(255, 255, 255, 0.85);
}

.strategic-buttons {
    display   : flex;
    gap       : 15px;
    margin-top: 60px;
}

.btn-strategic {
    background         : linear-gradient(to left, white 0%, white 50%, var(--primary-blue) 50%, var(--primary-blue) 100%);
    background-size    : 200% 100%;
    background-position: right bottom;
    color              : #04598B;
    border             : none;
    padding            : 10px 24px;
    border-radius      : 4px;
    font-weight        : 600;
    font-size          : 15px;
    cursor             : pointer;
    display            : flex;
    align-items        : center;
    gap                : 8px;
    text-decoration    : none;
    transition         : background-position 0.4s ease-in-out, color 0.4s ease-in-out;
}

.btn-strategic i {
    margin-left: 10px;
    font-size  : 0.9rem;
}

.btn-strategic:hover {
    background-position: left bottom;
    color              : white;
    text-decoration    : none;
}

.strategic-bg-logo {
    position      : absolute;
    bottom        : -240px;
    left          : -437px;
    width         : 80%;
    height        : auto;
    opacity       : 0.1;
    z-index       : 1;
    pointer-events: none;
}

.certificate-section {
    padding         : 60px 0 60px 0;
    background-color: #fff;
    text-align      : center;
    position        : relative;
    overflow        : hidden;
}

.cert-section-title {
    font-size    : 2.5rem;
    font-weight  : 700;
    color        : #333;
    margin-bottom: 10px;
    position     : relative;
}

.cert-section-subtitle::before {
    content         : '';
    position        : absolute;
    top             : 100%;
    left            : 50%;
    transform       : translateX(-50%);
    width           : 50%;
    height          : 3px;
    background-color: #d8d8d8;
    margin-top      : 15px;
}

.cert-section-subtitle::after {
    content         : '';
    position        : absolute;
    top             : 100%;
    left            : 50%;
    transform       : translateX(-50%);
    width           : 15%;
    height          : 3px;
    background-color: var(--primary-blue);
    margin-top      : 15px;
}

.cert-section-subtitle {
    font-size    : 17px;
    color        : #666666;
    margin-bottom: 50px;
    max-width    : 750px;
    margin-left  : auto;
    margin-right : auto;
    position     : relative;
}

.certificate-carousel-wrapper {
    position : relative;
    max-width: 1300px;
    margin   : 0 auto;
}

.certificate-row {
    min-height: 600px;
}

.certificate-slider .owl-stage-outer {
    overflow: visible !important;
}

.certificate-slider .owl-stage {
    padding: 60px 0 !important;
}

.certificate-item {
    padding        : 0 5px !important;
    height         : 600px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), z-index 0s;

}

.certificate-slider .owl-item {
    position: relative !important;
    z-index : 1 !important;
}


.owl-item:has(.level-1) {
    z-index: 3 !important;
}

.owl-item:has(.level-2) {
    z-index: 2 !important;
}

.owl-item.center {
    z-index: 5 !important;
}

.certificate-item.level-2 {
    transform: scale(1);
}

.certificate-item.level-1 {
    transform: scale(1.25);
}

.certificate-item.active-slide {
    transform: scale(1.5);
}

.certificate-img {
    width     : 100%;
    height    : auto;
    display   : block;
    border    : 4px solid #e3e1e1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav-btn {
    position        : absolute !important;
    top             : 55% !important;
    transform       : translateY(-50%) !important;
    background-color: var(--primary-blue) !important;
    color           : #fff !important;
    border          : 1px solid #cccccc;
    width           : 45px !important;
    height          : 45px !important;
    border-radius   : 4px !important;
    display         : flex !important;
    justify-content : center !important;
    align-items     : center !important;
    font-size       : 1.4rem !important;
    cursor          : pointer !important;
    transition      : all 0.3s ease !important;
    z-index         : 10 !important;
    opacity         : 1 !important;
}

.slider-nav-btn:hover {
    background-color: var(--primary-blue);
    color           : white;
}

.slider-nav-btn:hover i {
    color: white;
}

.prev-btn {
    left: -5%;
}

.next-btn {
    right: -5%;
}


.certificate-slider .owl-dots {
    text-align: center;
    margin-top: 20px;
    display   : none;
}

.certificate-owl .owl-dot span {
    width     : 10px;
    height    : 10px;
    margin    : 5px 4px;
    background: #D6D6D6;
    display   : block;
    transition: opacity 0.2s ease;
}

.certificate-owl .owl-dot.active span,
.certificate-owl .owl-dot:hover span {
    background: var(--primary-blue);
}

.news-section {
    padding            : 60px 0;
    text-align         : center;
    background-image   : url(../img/world_contact.png);
    background-position: bottom left;
    background-repeat  : no-repeat;
    background-color   : #F3F3F3;
    background-color   : #eff3f7;
    position           : relative;

}

.news-header {
    margin-bottom: 50px;
}

.news-header .section-title {
    font-size    : 40px;
    font-weight  : 700;
    color        : #1e1e1e;
    margin-bottom: 10px;
}

.news-header .section-subtitle {
    font-size     : 17px;
    color         : #666666;
    max-width     : 750px;
    margin        : 0 auto;
    position      : relative;
    padding-bottom: 20px;
}

.news-header .section-subtitle::after {
    content         : '';
    position        : absolute;
    bottom          : 0;
    left            : 50%;
    transform       : translateX(-50%);
    width           : 15%;
    height          : 3px;
    background-color: var(--primary-blue);
    border-radius   : 2px;
}

.news-cards-row {
    display        : flex;
    justify-content: center;
    align-items    : stretch;
}

.news-card {
    border          : 1px solid #e0e0e0;
    border-radius   : 8px;
    height          : 100%;
    transition      : transform 0.3s ease, box-shadow 0.3s ease;
    text-align      : left;
    background-color: #fff;
}

.news-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.167);
}

.news-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.news-card-img {
    width     : 100%;
    height    : 250px;
    object-fit: cover;
    display   : block;
    transition: transform 0.3s ease;
}

.news-card-image-wrapper:hover .news-card-img {
    transform: translateX(5px) scale(1.06);
}

.news-date-box {
    position   : absolute;
    top        : 20px;
    left       : 20px;
    text-align : center;
    line-height: 1.2;
    z-index    : 5;
}

.news-date-box .date-day {
    background-color          : var(--primary-blue);
    color                     : #fff;
    font-size                 : 30px;
    font-weight               : 700;
    padding                   : 10px 15px 5px;
    border-bottom-right-radius: 0;
}

.news-date-box .date-month {
    background-color: #fff;
    color           : #111111;
    font-size       : 14px;
    font-weight     : 500;
    padding         : 7px;
    border-top      : 1px solid #f0f0f0;
}

.news-card-content {
    padding        : 20px;
    height         : 330px;
    display        : flex;
    flex-direction : column;
    justify-content: space-between;
    position       : relative;
    overflow       : visible
}

.news-category {
    font-size    : 14px;
    color        : #777;
    display      : block;
    margin-bottom: 5px;
}

.news-category i {
    margin-right: 5px;
    color       : var(--heading-color);
}

.news-title {
    font-size         : 18px;
    font-weight       : 700;
    color             : #1e1e1e;
    display           : -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow          : hidden;
}

.news-title::before {
    content         : '';
    position        : absolute;
    top             : 102px;
    left            : 48%;
    transform       : translateX(-50%);
    width           : 82%;
    height          : 1px;
    background-color: #d8d8d8;
}

.news-excerpt {
    font-size    : 15px;
    color        : #555;
    min-height   : 72px;
    display      : -webkit-box;
    overflow     : hidden;
    text-overflow: ellipsis;
}

.read-more-link:hover {
    color          : var(--primary-blue);
    text-decoration: none;
}

.read-more-link i {
    margin-left: 5px;
    font-size  : 12px;
    color      : var(--primary-blue);
}

.news-carousel-wrapper {
    position    : relative;
    max-width   : 1100px;
    margin-left : auto;
    margin-right: auto;
    padding     : 0 50px;
}

.custom-owl-nav {
    position       : absolute;
    top            : 50%;
    transform      : translateY(-50%);
    width          : 45px;
    height         : 45px;
    background     : #ffffff;
    color          : #333;
    border         : 1px solid #cccccc;
    border-radius  : 4px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 1.2rem;
    z-index        : 100;
    cursor         : pointer;
    margin-right   : -40px;
    margin-left    : -40px;
}

.custom-owl-nav:hover {
    background: var(--primary-blue);
    color     : white;
}

.custom-owl-prev {
    left: 0;
}

.custom-owl-next {
    right: 0;
}

.news-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
    display   : none;
}

.news-slider .owl-dot {
    display: inline-block;
}

.news-slider .owl-dot span {
    width        : 10px;
    height       : 10px;
    margin       : 5px 4px;
    background   : #ccc;
    display      : block;
    border-radius: 0px !important;
    transition   : background 0.3s ease;
}

.news-slider .owl-dot.active span,
.news-slider .owl-dot:hover span {
    background: var(--primary-blue) !important;
}

.news-carousel-wrapper .owl-stage {
    height     : 610px !important;
    padding-top: 10px !important;
}

.news-card .read-more-link .icon-arrow {
    opacity    : 0;
    transition : opacity 0.3s ease;
    margin-left: -20px;
}

.news-card .read-more-link .fa-plus {
    opacity   : 1;
    transition: opacity 0.3s ease;
    color     : var(--primary-blue);
}

.read-more-link:hover .fa-plus {
    opacity: 0;
}

.read-more-link:hover .icon-arrow {
    opacity: 1;
}




/*
.main-footer {
    background-color: #1e2124;
    color           : #ffffff;
    padding-top     : 50px;
    font-size       : 16px;
}

.footer-title {
    font-size    : 18px;
    font-weight  : bold;
    color        : #ffffff;
    margin-bottom: 25px;
}

.footer-logo img {
    height       : 60px;
    margin-left  : -15px;
    margin-bottom: 30px;
}

.footer-about {
    color        : #cccccc;
    line-height  : 1.6;
    margin-bottom: 30px;
}

.social-links a {
    display         : inline-flex;
    justify-content : center;
    align-items     : center;
    width           : 35px;
    height          : 35px;
    background-color: transparent;
    color           : #ffffff;
    border          : 1px solid #3A3A3A;
    border-radius   : 4px;
    margin-right    : 10px;
    transition      : all 0.3s;
}

.social-links a:hover {
    background-color: #007bff;
    border-color    : #007bff;
}

.contact-info-list,
.quick-links-list {
    list-style: none;
    padding   : 0;
    margin    : 0;
}

.contact-info-list li {
    color        : #cccccc;
    margin-bottom: 15px;
    line-height  : 1.5;
}

.contact-info-list i {
    color       : #6B6B6B;
    margin-right: 10px;
    width       : 15px;
    text-align  : center;
}

.quick-links-list li a {
    color          : #cccccc;
    text-decoration: none;
    display        : block;
    padding        : 5px 0;
    transition     : color 0.3s;
}

.quick-links-list li a:hover {
    color: #007bff;
}

.quick-links-list li i {
    font-size     : 8px;
    color         : var(--primary-blue);
    vertical-align: middle;
    margin-right  : 8px;
}

.newsletter-form {
    display      : flex;
    margin-top   : 15px;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    border-radius: 0;
    border       : none;
    height       : 40px;
    flex-grow    : 1;
    padding      : 0 10px;
    font-size    : 14px;
}

.newsletter-form .btn {
    border-radius   : 0;
    background-color: var(--primary-blue);
    border          : 1px solid var(--primary-blue);
    color           : #ffffff;
    width           : 50px;
    padding         : 0;
}

.newsletter-form .btn i {
    font-size: 18px;
}

.footer-question a {
    color          : white !important;
    font-weight    : bold;
    text-decoration: underline;
}

.footer-question {
    color: #cccccc;
}

.footer-bottom {
    background-color: #151719;
    padding         : 15px 0;
    margin-top      : 50px;
    font-size       : 14px;
}

.copyright-text {
    margin: 0;
    color : #cccccc;
}

.footer-utility-links a {
    color          : #cccccc;
    text-decoration: none;
    margin-left    : 15px;
    position       : relative;
}

.footer-utility-links span {
    color: #cccccc;
}

.footer-utility-links a::before {
    content  : "•";
    position : absolute;
    left     : -8px;
    color    : #cccccc;
    font-size: 16px;
}

.footer-utility-links a:first-child::before {
    content: none;
} */

.scroll-to-top-btn {
    display         : none;
    position        : fixed;
    bottom          : 20px;
    right           : 20px;
    z-index         : 99;
    width           : 50px;
    line-height     : 50px;
    text-align      : center;
    background-color: var(--primary-blue);
    color           : #fff;
    border-radius   : 4px;
    box-shadow      : 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    font-size       : 20px;
}

.scroll-to-top-btn:hover {
    background-color: #1eb2e3;
    color           : #fff;
    transform       : scale(1.05);
}

.scroll-to-top-btn i {
    pointer-events: none;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

@media (max-width: 450px) {
    .hero-content {
        position  : absolute;
        top       : calc(50% + 55px);
        left      : 50%;
        transform : translate(-50%, -50%);
        width     : 100%;
        padding   : 0 5%;
        text-align: center;
    }

    .hero-content h1 {
        font-size    : 1.8rem;
        margin-bottom: 10px;
        line-height  : 1.3;
        width        : 100%;
    }

    .hero-content p {
        font-size    : 0.95rem;
        line-height  : 1.5;
        margin-bottom: 20px;
        max-width    : 100%;
        text-align   : center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items   : center;
        gap           : 15px;
        width         : 100%;
    }

    .btn-learn-more,
    .btn-our-services {
        width          : 100% !important;
        max-width      : 250px;
        justify-content: center;
        padding        : 12px 20px;
        font-size      : 15px;
    }

    .hero-carousel .carousel-indicators {
        display: none;
    }

    .hero-carousel .carousel-indicators li {
        margin: 0 4px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }

    .hero-section {
        margin-top: 75px;
        min-height: 500px;
    }

    .info-panel {
        display       : block;
        flex-direction: column;
        text-align    : left;
        padding       : 14px 10px;
        width         : 100%;
        position      : relative;
    }

    .info-panel2-button {
        position           : absolute;
        bottom             : 10px;
        right              : 20px;
        font-size          : 20px;
        border             : none;
        display            : flex;
        align-items        : center;
        justify-content    : center;
        transition         : all 0.3s ease;
        z-index            : 1;
        background         : linear-gradient(to right, black 50%, white 50%);
        background-size    : 200% 100%;
        background-position: right bottom;
        width              : 50px;
        height             : 50px;
    }

    .info-panel2-button i {
        color     : #000000;
        transition: color 0.3s ease;
    }

    .info-panel-title {
        font-size    : 30px;
        margin-bottom: 10px;
        font-weight  : 700;
    }

    .info-panel-description {
        font-size    : 15px;
        margin-bottom: 15px;
    }

    .info-panel-button {
        margin: 0 auto;
    }

    .recruitment-section {
        padding: 10px;
        width  : 100%;
    }

    .wrapper {
        display: none;
    }

    .main-left h1 {
        font-size: 30px;
    }

    .main-left {
        margin-bottom: 10px;
    }

    .main-left p {
        margin-top: 5px;
    }

    .info-panel2 {
        width     : 100%;
        min-width : auto;
        padding   : 20px;
        margin-top: 15px;
    }

    .info-panel2 .icon-container {
        margin-right: 10px;
    }

    .info-panel2 .percentage-title {
        font-size: 24px;
    }

    .info-panel2 .percentage-text {
        width    : 100%;
        font-size: 15px;
    }

    #service-owl-carousel .owl-stage {
        height     : 559px !important;
        padding-top: 10px !important;
    }

    .our-service-btn {
        margin-top: 15px;
    }

    .service-section .owl-carousel.service-slider .owl-dots {
        padding-top: 0px;
    }

    .read-more-btn {
        margin-top: 15px;
    }

    .product-container {
        padding: 0 15px;
    }

    .product-info-wrapper {
        height: fit-content;
        border: 1px solid #cccccc87;
    }

    .why-main-img {
        width        : 100%;
        height       : auto;
        margin-bottom: 25px;
    }

    .why-info-overlay2 {
        background   : url(../img/pp.webp) no-repeat center center / cover, var(--primary-blue);
        color        : #fff;
        padding      : 20px;
        border-radius: 8px;
        text-align   : left;
        z-index      : 10;
        margin-bottom: 10px;
    }

    .why-secondary-img-top {
        height: auto;
    }

    .why-nav-tabs,
    .why-tab-content {
        display: none !important;
    }

    .mobile-dropdown {
        display: block !important;
    }

    .mobile-dropdown .dropdown-item {
        border-bottom: 1px solid #e7e7e7;
        margin-bottom: 10px;
    }

    .mobile-dropdown .dropdown-content p {
        font-size: 15px;
    }

    .mobile-dropdown .dropdown-toggle-btn {
        width      : 100%;
        background : #ede9e9;
        padding    : 12px 15px;
        border     : none;
        text-align : left;
        font-weight: 600;
        color      : #333;
        font-size  : 16px;
    }

    .mobile-dropdown .dropdown-content p,
    .mobile-dropdown .dropdown-content a.why-btn-learn-more {
        display      : block !important;
        width        : 100%;
        margin-bottom: 10px;
    }

    .mobile-dropdown .dropdown-item {
        padding       : 0px;
        display       : flex;
        flex-direction: column;
    }

    .why-btn-learn-more {
        margin-top: 15px;
        padding   : 10px 12px;
    }

    .mobile-dropdown .dropdown-content {
        width           : 100%;
        box-sizing      : border-box;
        display         : none;
        padding         : 15px;
        color           : #555;
        background-color: white;
    }

    .why-tab-subtitle,
    .why-tab-subtitle-detail {
        white-space  : normal;
        word-wrap    : break-word;
        overflow-wrap: break-word;
    }

    .strategic-section {
        padding-bottom: 0;
        overflow      : visible;
    }

    .strategic-content-col {
        width        : 100%;
        padding      : 40px 20px 60px 20px;
        margin-right : 0;
        border-radius: 0px !important;
    }

    .strategic-content-block {
        max-width : 100%;
        margin-top: 190px;
    }

    .strategic-image-wrapper {
        position     : absolute;
        width        : 100%;
        max-width    : 90%;
        transform    : none;
        top          : -50px;
        right        : 0px;
        border-radius: 0;
        box-shadow   : none;
        margin-bottom: 20px;
        z-index      : 10;
    }

    .strategic-content-col {
        display       : flex;
        flex-direction: column;
        width         : 100%;
        padding       : 40px 20px 60px 20px;
        margin-right  : 0;
        border-radius : 0 0 50px 50px;
    }

    .strategic-title {
        font-size    : 30px;
        margin-bottom: 15px;
    }

    .strategic-description {
        font-size    : 1rem;
        margin-bottom: 15px;
    }

    .strategic-buttons {
        flex-direction: column;
        gap           : 10px;
        margin-top    : 20px;
    }

    .btn-strategic {
        justify-content: center;
    }

    .strategic-img {
        border-radius: 8px;
    }

    .strategic-bg-logo {
        left  : -101px;
        width : 123%;
        bottom: 141px;
    }

    .certificate-slider .owl-stage {
        padding: 0 !important;
    }

    .certificate-item {
        padding: 5px !important;
        height : auto;
    }

    .certificate-item.level-2,
    .certificate-item.level-1,
    .certificate-item.active-slide {
        transform: scale(1) !important;
        z-index  : 1 !important;
    }

    .slider-nav-btn {
        display: none !important;
    }

    .cert-section-subtitle {
        padding: 10px;
    }

    .certificate-owl .owl-dots {
        display   : block;
        margin-top: 15px;
    }

    .cert-section-title {
        font-size: 30px;
    }

    .custom-owl-nav {
        display: none !important;
    }

    .news-slider .owl-dots {
        display: block;
    }

    .news-carousel-wrapper {
        padding: 0 15px;
    }

    .news-header .section-title {
        font-size: 30px;
    }

    .news-title::before {
        top : 110px;
        left: 52%;
    }

    .news-title::after {
        top : 110px;
        left: 14%;
    }

    body {
        overflow-x: hidden;
    }

    .section-title,
    .product-section .section-title {
        font-size: 30px;
    }


}

@media (max-width: 320px) {
    .strategic-content-block {
        margin-top: 140px;
    }

    #service-owl-carousel .owl-stage {
        height     : 490px !important;
        padding-top: 10px !important;
    }

    .service-section .owl-carousel .owl-stage-outer {
        height: 68vh;
    }

    .news-title::before {
        top : 103px;
        left: 52%;
    }

    .news-title::after {
        top : 103px;
        left: 15%;
    }
}

@media (min-width: 992px) and (max-width: 1299px) {
    .strategic-content-col {
        min-height: 500px;
    }

    .info-panel2 {
        /* margin-top: 35px; */
    }

    .read-more-btn {
        margin-top: 58px;
    }

    .recruitment-section {
        padding-left: 15px !important;
    }

    .info-panel {
        width  : 415px;
        padding: 35px 15px;
    }

    .recruitment-text {
        width: 83%;
    }

    .main-left h1,
    .section-title,
    .product-section .section-title,
    .strategic-title,
    .cert-section-title,
    .news-header .section-title {
        font-size: 30px;
    }

    .product-image {
        height: 200px;
    }

    .product-container {
        padding: 0 30px;
    }

    .product-info-wrapper {
        padding: 10px;
    }

    .product-info-content {
        margin-right: 8px;
        width       : 81%;
    }

    .strategic-content-col {
        padding: 90px 38px 60px 120px;
    }

    .strategic-image-wrapper {
        right    : -150px;
        width    : 42%;
        max-width: 42%;
    }

    .strategic-content-block {
        max-width: 70%;
    }

    .strategic-bg-logo {
        bottom: -153px;
        left  : -155px;
    }

    .certificate-carousel-wrapper {
        max-width: 1098px;
    }

}

@media (min-width: 1300px) and (max-width: 1700px) {
    .product-image {
        height: 229px;
    }

    .strategic-image-wrapper {
        position : absolute;
        top      : 50%;
        right    : -172px;
        width    : 48%;
        max-width: 43%;

    }

    .strategic-bg-logo {
        bottom: -207px;
        left  : -437px;
        width : 112%;

    }

}