* {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.text-ban{
    color: red;
}

.div-text{
    padding-top: 100px;
}



/*---------------- home-css ----------------*/
.custom-input{
    border: none; /* Xóa toàn bộ border */
    border-bottom: 2px solid #dc3545;
    position: relative;
}
.custom-input:focus {
    border: none; /* Xóa toàn bộ border */
    border-bottom: 2px solid #dc3545;
    outline: none;
}

.home-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-left {
    display: flex;
    flex-direction: column;
}

.home-bg-txt {
    margin-top: 30px;
    font-size: 25px;
    color: #c41d29;
    font-weight: bold;
}

.home-sm-txt {
    font-size: 20px;
}

.home-btn-1 {
    margin-top: 20px;
    width: fit-content;
    padding: 10px 30px;
    border-radius: 30px;
    background: white;
    font-weight: bold;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.home-btn-2 {
    margin-top: 20px;
    width: fit-content;
    padding: 10px 30px;
    border-radius: 30px;
    background: linear-gradient(92.53deg, #c63449 29.73%, #e7743d 97.09%);
    font-weight: bold;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.home-img {
    max-width: 90%;
}

@media(max-width: 1000px) {
    .home-img {
        display: none;
    }
}

/*---------------- card-css -------------------*/
.c-wrapper {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Styling for the button */
.c-btn {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 30px rgba(235, 114, 87, 0.27);
    padding: 10px 20px;
    /* Adjust padding for better spacing */
    border-radius: 20px;
    width: fit-content;
    background: white;
    color: #f55500;
}

.q-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: #f55500;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
}

.card-bg-txt {
    font-size: 30px;
}

.card-bg-txt,
.card-sm-txt {
    margin: 0 200px;
}

@media (max-width: 1000px) {
    .c-wrapper {
        margin-top: 0;
    }

    .card-bg-txt,
    .card-sm-txt {
        margin: 0 80px;
    }
}

/*-------------------- card slide css -------------------*/
.slide-container {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;

}

.slide-container1 {
    max-width: 1100px;
    width: 100%;
    height: fit-content;
}

.slide-content {
    margin: 0 40px;
}

.card-item {
    border-radius: 25px;
    background-color: #fff;
    position: relative;
    margin-bottom: 50px;
    border: 2px solid #E65F1D;
}

.image-content,
.card-cotent {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.image-content {
    row-gap: 5px;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;

}

.card-title1 {
    font-size: 18px;
    font-weight: 500;
    color: #c62128;
    text-align: center;
}

.card-description {
    font-size: 14px;
    color: #707070;
    text-align: center;
    height:170px;
    max-height: 200px;
}

.card-btn {
    border: none;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    transition: transform 0.3s ease;
    position: absolute;
    bottom: -25px;
    box-shadow: 0px 4px 30px rgba(235, 114, 87, 0.27);
}

.card-btn i {
    color: #e65f1d;
}

.card-btn:hover {
    transform: scale(1.2);
}

.card-item:hover {
    background: linear-gradient(45deg, #bc0d2c, #e65f1e);
}

.card-item:hover .card-title1,
.card-item:hover .card-description {
    color: white;
}

/*-------------------- about us css -------------------*/

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.solu-btn {
    background: white;
    border: 2px solid #dc4b20;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 100px;
}

.solu-btn span {
    color: #dc4b20;
    font-weight: bold;
}

.solu-btn:hover {
    background: linear-gradient(45deg, #bc0d2c, #e65f1e);
    border: none;
}

.solu-btn:hover span {
    color: white;
    /* Ensure correct selector */
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 50px;
    color: #dc4b20;
    font-weight: bolder;
}

.about-btn-top {
    background: white;
    display: flex;
    padding: 10px 15px;
    box-shadow: 0px 4px 30px rgba(235, 114, 87, 0.27);
    width: fit-content;
    border-radius: 30px;
    text-transform: uppercase;
    color: #cb2a27;
}

.about-btn-top-user {
    color: white;
    background: #cb2a27;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}

.about-btn-bot {
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(92.53deg, #B7042C 29.73%, #E8641B 97.09%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    letter-spacing: 0;
    border-radius: 30px;
    width: fit-content;
    color: white;
    font-weight: bold;
}

.about-img {
    max-width: 90%;
}

/*-------------------- job-css -------------------- */

.job-container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(92.53deg, #c63449 29.73%, #e7743d 97.09%);
}

.job-card-container {
    width: 100%;
}

.job-big-txt1 {
    margin-top: 20px;
    font-size: 30px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.job-big-txt2 {
    color: white;
    max-width: 500px;
    text-align: center;
}

.job-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 30px;
    background: white;
    border-radius: 30px;
    margin-bottom: 20px;
}

.job-card p {
    margin-top: 10px;
    font-weight: bold;
}

.job-card:hover {
    background: linear-gradient(92.53deg, #c63449 29.73%, #e7743d 97.09%);
    border: 1px solid white;
}

.job-card:hover img,
.job-card:hover p {
    color: white;
}

.job-card:hover img {
    filter: brightness(0) invert(1);
}

.tab-menu-item{
    text-decoration: none;
    color: #666777;
    font-weight: 500;
    position: relative;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.tab-menu-item::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #E5503D;
    visibility: hidden;
    transition: 0.2s ease-in-out;
    z-index: -1;
}
.tab-menu-item:hover::before,
.tab-menu-item.active::before {
    width: 100%;
    visibility: visible;
}
.tab-menu-item:hover,
.tab-menu-item.active {
    color: #fff;
}

.tab-pane-item{
    background: url("https://imgs.search.brave.com/GBg114rfn0SGl3V3LKylq1ImCypt-g9gD7dFkPfEh_c/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly90NC5m/dGNkbi5uZXQvanBn/LzA0LzY3LzUyLzMz/LzM2MF9GXzQ2NzUy/MzMzOF9KcXRzOEty/N1ZMNU4xVXFGOEhl/R3U2MHZUdTYwdjMy/UC5qcGc");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.tab-pane-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.field-card{
    background-color: #fff;
    padding: 20px;
}
.field-card:hover{
    background-color: #6222cc;
    color: #fff
}
.field-card:hover > .field-card-wrap > .field-card-ico {
    background-color: #fba504 !important;
}

.tab-pane-item1{
    background: url("https://images.unsplash.com/photo-1475274047050-1d0c0975c63e?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8bmlnaHQlMjBza3l8ZW58MHx8MHx8fDA%3D");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.ai-card {
    filter: blur(15px) grayscale(1);
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1000px) {
    .ai-card img{
        width: 300px;
        height: 300px;
    }
}
.ai-card:hover {
    filter: none;
    transform: scale(1.05);
}

.tab-pane-item2{
    background-color:#2d0a31;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/*-------------------- advance-css -------------------- */

.advance-container {
    width: 100%;
    padding: 40px 0;
}

.advance-left {
    display: flex;
    flex-direction: column;
}

.advance-big-txt {
    font-size: 30px;
    color: #bf1937;
    font-weight: bold;
    margin-top: 30px;
}

.advance-img {
    max-width: 90%;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.advance-icon {
    font-size: 25px;
    color: #cb2a27;
    margin-bottom: 10px;
}

.card-body span p {
    font-weight: bold;
}

@media (max-width: 1000px) {
    .advance-wrapper {
        display: flex;
        flex-direction: column;
    }
}

/*-------------- knowledge-css --------------*/


.page-link{
    color: #2c52eb;
    margin: 0 7px;
}
.page-link:hover,
.page-link.active{
    background: #2c52eb !important;
    color: #fff !important;
}
.blog-img{
    position: relative;
}
.blog-img img{
    transition: all 0.3s ease-in-out;
    min-width: 450px;
}
.blog-img:hover > img{
    transform: scale(1.2);
}
.blog-img-overlay {
    position: absolute;
    height: 0%;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: rgba(98, 34, 204, 0.9);
    transition: all 0.3s;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}
.blog-img:hover > .blog-img-overlay {
    height: 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.blog-img:hover > .blog-img-overlay > .blog-img-ico {
    opacity: 1;
    visibility: visible;
}
.blog-img-ico{
    transition: all 0.3s ease-in-out;
}
.blog-img-ico:hover{
    transform: scale(1.1);
}

.connect-container {
    margin-top: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/media/home/connect-banner.jpg');
    /* background: #41a248; */
    padding: 40px 0;
}

.connect-left {
    display: flex;
    flex-direction: column;

}

.connect-bg-txt {
    font-size: 35px;
    font-weight: bold;
    color: white;
}

.connect-sm-txt {
    font-size: 15px;
    color: white;
}

.connect-btn1 {
    padding: 10px 20px;
    width: fit-content;
    background: white;
    border-radius: 30px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    font-weight: bold;
}

.connect-btn2 {
    padding: 10px 20px;
    width: fit-content;
    background: linear-gradient(92.53deg, #B7042C 29.73%, #E8641B 97.09%);
    border-radius: 30px;
    color: white;
    font-weight: bold;
}

.trend-container {
    margin-top: 50px;
    padding: 40px 0;
}

@media (max-width: 1000px) {
    .connect-wrapper {
        display: flex;
        flex-direction: column;
    }

    .connect-container {
        width: 100%;
    }
}

.trend-num {
    color: #cb2a27;
    font-weight: bold;
}

.trend-images {
    position: relative;
}

.trend-images img {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}

.trend-img-item {
    left: 20%;
}

.trend-img {
    max-width: 90%;
}

@media (max-width: 1000px) {
    .trend-wrapper {
        display: flex;
        flex-direction: column;
    }

    .trend-img {
        margin-top: 60px;
        max-width: 90%;
    }

    .trend-container {
        width: 100%;
    }
}

/* ----------------footer css---------------- */
footer {
    padding: 40px 0;
    border: 1px solid #bdc3c7;
    background: #ecf0f1;
}

@media (max-width:1000px) {
    .foot-wrapper {
        display: flex;
        flex-direction: column;
    }

    footer {
        height: 800px;
    }
}

.foot-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.foot-logo {
    max-width: 90%;
}

.foot-p1 {
    color: #db4922;
    font-weight: bold;
}

.foot-p2 {
    color: #95a5a6;
    font-size: 13px;
}

.foot-mid {
    display: flex;
    flex-direction: column;
}

.foot-p3 {
    font-size: 13px;
    font-weight: bold;
}

.social-wrapper {
    display: flex;
}

.social-logo {
    font-size: 20px;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: red;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.fb {
    background: #3b5998;
}

.gmail {
    background: #0e0e0e;
}

.phone {
    background: #41a248;
}

.youtube {
    background: #c4302b;
}

.regulation-wrapper {
    list-style: none;
    position: absolute;
    left: 0;

}

.regulation-wrapper li a {
    text-decoration: none;
    color: #95a5a6;
    font-size: 13px;
}

.regulation-wrapper li:hover a {
    color: #c62128;
}

.copy-right {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* swiper button css */
.auto-slider{
    height: 140px;
    margin: auto;
    position: relative;
    width: 90%;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .slider-track{
    display: flex;
    width: calc(250px * 9);
    animation: scroll-right 40s linear infinite;
  }
  .slider-track:hover{
    animation-play-state: paused;
  }
  .slider-track-reverse {
    display: flex;
    width: calc(250px * 9);
    animation: scroll-left 40s linear infinite;
  }
  .slider-track-reverse:hover {
    animation-play-state: paused;
  }
  @keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4));
    }
  }
  @keyframes scroll-left {
    0% {
        transform: translateX(calc(-250px * 4));
    }
    100% {
        transform: translateX(0);
    }
  }
  .auto-slide{
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    perspective: 100px;
  }
  .auto-slide img{
    width: 100%;
    transition: transform 1s;
  }
  .auto-slide img:hover{
    transform: translateZ(20px);
  }
  .auto-slider::before{
    left: 0;
    top: 0;
  }
  .auto-slider::after{
    right: 0;
    top: 0;
  }
  