/*hcmcss*/

/* Core Values Section */
.core-values-section {
    padding: 80px 0;

}

.core-values-section .container {
    max-width: 82%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.section-title .text-orange {
    color: #f26f21;
}

.title-line {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #d4d4d4;
}

.line-decoration {
    position: absolute;
    right: 0;
    top: -6px;
    width: 140px;
    height: 14px;
    background-image: repeating-linear-gradient(
        45deg,
        #d4d4d4 0,
        #d4d4d4 8px,
        transparent 8px,
        transparent 16px
    );
}

/* Content */
.values-content {
    margin-bottom: 50px;
}

.content-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.content-description {
    font-size: 17px;
    line-height: 1.8;
    color: #333;

    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 45px;
}

/* Value Card */
.value-card {
    background: transparent;
    padding: 3px;
    position: relative;
}

.card-inner {
    padding: 40px 15px 50px;
    height: 100%;
    min-height: 350px;
    position: relative;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        50px 100%,
        0 calc(100% - 50px)
    );
    border: 2px solid #f26f21;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: 0.5s all;
}
.value-card:hover .card-inner::before{
  background: linear-gradient(360deg, rgb(242 111 33 / 47%) 0%, rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 0%) 100%);
  transition: 0.5s all;
}

.bg-core {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: 0.3s all;
}
.card-inner:hover .bg-core{
  filter: blur(5px);
  transition: 0.3s all;
}

span.line-orange-top {
    width: 150px;
    height: 1.5px;
    background: #f26f21;
    position: absolute;
    top: 0px;
    right: -28px;
    transform: rotate(45deg);
    display: inline-block;
}

span.line-orange-bottom {
    width: 150px;
    height: 1.5px;
    background: #f26f21;
    position: absolute;
    bottom: 0px;
    left: -28px;
    transform: rotate(45deg);
    display: inline-block;
}



.card-title {
    font-size: 21px;
    font-weight: 700;
    color: #f47628;
    margin: 0 0 18px 0;
    line-height: 1.4;
    z-index: 99;
    height: 50px;

}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: black;
    margin: 0;
    flex-grow: 1;
    z-index: 99;
}

.card-decoration {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 65px;
    height: 8px;
    background-image: repeating-linear-gradient(
        45deg,
        #e5e5e5 0,
        #e5e5e5 6px,
        transparent 6px,
        transparent 12px
    );
}

.seemore{
  position: absolute;
  bottom: -50px;
  z-index: 999;
  opacity: 0;
  transition: 0.4s all;
}
.value-card:hover .seemore{
 bottom: 35px;
 opacity: 1;
 transition: 0.4s all;
}

.bg-img-life {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;

}

.bg-img-life:after {
    content: '';
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 2;
    position: absolute;
}


.wrapper-life h3 {
    margin-bottom: 20px;
    color: white;
}

.wrapper-life{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    z-index: 9;
}

/* Responsive */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .content-title {
        font-size: 28px;
    }

    .content-description {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .line-decoration {
        width: 100px;
    }

    .section-title {
        font-size: 30px;
    }

    .content-title {
        font-size: 24px;
    }

    .card-title {
        font-size: 19px;
        height: auto;
    }

    .card-text {
        font-size: 14px;
    }
    .seemore{
      bottom: 40px;
      opacity: 1;
      width: 70%;
  }
  .master-campus-hcm .core-values-section .container{
      max-width: 100%;
  }
}



/* Q&A Section */
.qa-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.qa-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Q&A Header */
.qa-header {
    margin-bottom: 40px;
}

.qa-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Q&A Accordion */
.qa-accordion {
    background: transparent;
}

.qa-item {
    background: #ffffff;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
/*    transition: all 0.3s ease;*/
}

.qa-item.active {
    border-left-color: #ff7845;
}

/* Q&A Question */
.qa-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.qa-question:hover {
    background-color: #f9f9f9;
}

.qa-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    color: #999;
    transition: all 0.3s ease;
}

.qa-item.active .qa-icon {
    color: #ff7845;
    transform: rotate(0deg);
}

.qa-question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

/* Q&A Section */
.qa-section {
    padding: 80px 0;

}



/* Q&A Header */
.qa-header {
    margin-bottom: 40px;
}

.qa-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Q&A Accordion */
.qa-accordion {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
}

.qa-item {
    background: #ffffff;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
/*    transition: all 0.3s ease;*/
}

.qa-item.active {
    border-left-color: #ff7845;
}

/* Q&A Question */
.qa-answer {
    display: none;
}

.qa-answer-content {
    padding: 0 30px 24px 69px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.qa-answer-content p {
    margin: 0 0 12px 0;
}

.qa-answer-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .qa-section {
        padding: 50px 0;
    }
    .qa-title {
        font-size: 28px;
    }
    .qa-question {
        padding: 20px 20px;
        gap: 12px;
    }
    .qa-question-text {
        font-size: 16px;
    }
    .qa-answer-content {
        padding: 0 20px 20px 56px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .qa-title {
        font-size: 24px;
    }
    .qa-question {
        padding: 16px 15px;
    }
    .qa-question-text {
        font-size: 15px;
    }
    .qa-answer-content {
        padding: 0 15px 16px 50px;
        font-size: 14px;
    }
}


/*bannner slider*/


.overview-hero.campushcm .banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.overview-hero.campushcm .banner img,
.overview-hero.campushcm .banner iframe,
.overview-hero.campushcm .banner video {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.overview-hero.campushcm .banner-video iframe {
    width: 100%;
    height: 100%;
}

.overview-hero.campushcm .banner-caption {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    z-index: 5;
}

.overview-hero.campushcm .banner-video-html5 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-hero.campushcm .banner-video-embed iframe {
    width: 100%;
    height: 100%;
}


.seemorefaq {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.seemorefaq a {
    display: inline-flex;
    margin: 10px 0px;
}

.bgvalue {
    position: absolute;
    bottom: 0px;
    
    height: auto;
    z-index: -1;
    opacity: 0.5;
    right: 0px;
}
.bgvalue  img{
  width: 100%;
  height: auto;
}


/*CLB HCM*/
/* RESET NHẸ */
.club-wrapper * {
    box-sizing: border-box;
}

/* WRAPPER */
.club-wrapper {
    background: #f6f7fb;
    padding: 40px 0;
}

/* HERO */
.club-hero {
    background: linear-gradient(135deg, #ff7a00, #ff4800);
    border-radius: 20px;
    padding: 60px;
    color: #fff;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
}

.hero-content p {
    margin: 15px 0 25px;
    font-size: 16px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #ff4800;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* FILTER */
.club-filter {
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    margin-bottom: 40px;
/*    position: sticky;*/
    top: 20px;
    z-index: 5;
}



.filter-btn {
    border: none;
   background-image: url('../images/Background.png');
      background-size: 100% 100%;
      background-repeat: no-repeat;
      background-position: center;
    color: black;
   padding: 12px 32px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    margin: 15px 10px;
}

.filter-btn.active {
/*    background: #f26f21;*/
    color: #fff;
     background-image: url(../images/Background-orang.png);
}

#club-search {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
}


.club-filter .container{
    width: 84%;
    display: flex;
    justify-content: space-between;
}
html .club-filter{
    padding: 20px 0px;

}

/*card list*/

.club-list {
    max-width: 1140px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 0 15px;
}
.club-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.club-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.club-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
     background: #f37021;
    color: white;
}



.club-card a {
    display: block;
    overflow: hidden;
    position: relative;
}

.club-card a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.club-card:hover a::before {
    opacity: 1;
}

.club-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.club-card:hover img {
    transform: scale(1.1);
}

.club-card h3 {
    padding: 0px 10px;
   font-size: 16px;
    font-weight: 700;
    color: #242424;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    text-align: center;
}

.btn-detail {
    display: inline-block;
    margin: 0 25px 25px;
    padding: 14px 35px;
    background: #f37021;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4);
    margin-top: auto;
}

a.btn-detail img {
    width: 12px;
    height: auto;
    margin-left: 10px;
}
.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(243, 112, 33, 0.6);
    background: #d65e1a;
}

.btn-detail:active {
    transform: translateY(0);
}
p.desclb {
    width: 80%;
    margin: 10px auto;
    text-align: center;
    color: grey;
    font-size: 14px;
}


.life-dk-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
a.seemorelife {
    border: 2px solid white;
    color:white ;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
}
a.seemorelife:hover{
    background:#f26f21 ;
    transition: 0.5s all;
    color: white;
}
.campus-intro-image img,.life-dk-bg img {
    border-radius: 10px;
    box-shadow: 1px 1px 7px 2px #cdcdcd;
}

/* Responsive */
@media (max-width: 868px) {
    .club-list {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 10px;
    }

    .club-card img {
        height: 280px;
    }

    .club-card h3 {
        font-size: 18px;
        padding: 20px;
        min-height: 70px;
    }

    .btn-detail {
        margin: 0 20px 20px;
        padding: 12px 30px;
        font-size: 14px;
    }

    .club-filter .container {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-right {
        margin-top: 10px;
        width: 100%;
    }
    .filter-right input{
        width: 100%;
    }
    .filter-btn{
        margin: 5px;
    }
    .campushcm .club-list{
        padding: 15px;
    }

}
#partner .all-event-image {
    height: 250px;
}
.jusbutton{
    text-align: center;
}
.jusbutton a{
    margin: 10px auto;
}

.category-cuoc-song-sinh-vien-campus-hcm .news-featured-card-small{
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.category-cuoc-song-sinh-vien-campus-hcm .news-featured-small-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.cssvhcm  .mt-3{
    margin-top: 30px;
}




.campushcm .banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.cssvhcm .news-featured-main-image {
    height: 350px;
}

/*dành cho điện thoại*/


@media (max-width: 767px) {

    .overview-hero.campushcm .overview-hero .banner {
        height: 240px; /* Chiều cao hợp lý mobile */
    }

    /* Image + Video */
   .overview-hero.campushcm  .banner img,
    .overview-hero.campushcm  .banner video,
    .overview-hero.campushcm .banner iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Video MP4 */
    .banner-video-html5 {
        object-fit: cover;
    }

    /* Caption */
    .banner-caption {
        bottom: 16px;
        font-size: 14px;
        padding: 0 12px;
        text-align: center;
        line-height: 1.4;
    }

    /* Swiper arrows ẩn trên mobile */
    .overview-hero .swiper-button-prev,
    .overview-hero .swiper-button-next {
        display: none;
    }

    /* Pagination */
    .overview-hero .swiper-pagination {
        bottom: 8px;
    }

    .overview-hero .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        opacity: 0.6;
    }

    .overview-hero .swiper-pagination-bullet-active {
        opacity: 1;
    }

    /* Breadcrumb */
    .overview-hero .breadcrumb {
        display: none; /* thường ẩn breadcrumb trên mobile */
    }
    .campus-brand-list img {
        width: 120px;
    }

    /*css thanh search*/

    .header-main .header-search{
      flex: 1;
      text-align: right;
      margin-right: 5px;
      justify-content: flex-end;
  }
  .campus-brand-list {

    gap: 10px;
}
.campus-life-campus-hcm.overview-experience .life-inner {
         grid-template-columns: none; 
}
.campus-life-campus-hcm.overview-experience .life-item p {
        font-size: 25px;
    }

  .campus-life-campus-hcm  a.seemorelife {
    border: 2px solid #f37021;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    background: #f37021;
}
.campus-life-campus-hcm .life-item {
    margin-bottom: 30px;
}

.iframehcm{
    height: 200px;
}

.master-campus-hcm .title-common{
    gap: 8px;
    display: inline;
}

.master-campus-hcm .title-common h2 {
        font-size: 20px;
    }
.master-campus-hcm .overview-hero .swiper-button-next{
    
}
.master-campus-hcm .overview-hero .swiper-button-prev{
    left: -10px;
}
}

