.content-hero {
    color: #BBBBBB; 
    padding-left: 5rem; 
    padding-right: 5rem;
}

@media (max-width: 991.98px) {
    .content-hero {
        padding-left: 2rem;
        padding-right: 2rem;
        margin-bottom: 0px; 
    }
}

@media (max-width: 767.98px) {
    .content-hero {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: center;
        margin-bottom: 0px;
    }
}

.text-content p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
    color: #5E6282;
}

.text-content h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
}

.text-content h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.text-content h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.content-image img {
    width: 100%;
}


@media (max-width: 991.98px) {
    .text-content h1 {
        font-size: 25px;
        line-height: 38px;
    }

    .text-content h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .text-content p {
        font-size: 18px;
        line-height: 26px;
    }

    .content-image img {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .text-content h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .text-content h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .text-content p {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .content-image {
        display: none;
        width: 100%;    
    }
}

@media (min-width: 768px) {
    .text-md-justify {
        text-align: justify !important;
    }
}

.text-gradient {
    background: linear-gradient(90deg, #A9639F, #450C3D, #7E166F, #A9639F);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-purple {
    background: #7E166F;
    border-radius: 20px;
    color: #FFFFFF;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none; 
}

.btn-white {
    background: #FFFFFF;
    border-radius: 20px;
    color: #7E166F;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none; 
}

.btn-purple:hover {
    box-shadow: 0px 8px 24px rgba(126, 22, 111, 0.3);
    transform: translateY(-2px);
    color: #fff;
    background: #7a166d;
}

@media (max-width: 1024px) {
    .btn-purple,
    .btn-white {
        font-size: 13px;
        padding: 7px 14px;
    }
}

@media (max-width: 768px) {
    .btn-purple,
    .btn-white {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .btn-purple,
    .btn-white {
        font-size: 11px;
        padding: 5px 10px;
    }
}

.feature-card {
    background: radial-gradient(circle, #3A0A33 0%, #240E21 50%, #121212 100%);
    padding: 28px 48px;
    gap: 16px;
    border-radius: 30px;
}

@media (min-width: 1439px) {
    .feature-description {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }
}

@media (max-width: 991.98px) {
    .feature-card {
        padding: 24px 32px;
    }
}

@media (max-width: 767.98px) {
    .feature-card {
        padding: 20px 24px;
    }
}

.bg-achievement {
    background: none;
}

/* partner-container-start */
.partner-container {
    display: flex;
    padding: 30px 0;
    align-items: center;
}

.tp-integration-slider-wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slide 100s linear infinite;
    will-change: transform;
}

.partner-card {
    position: relative; 
    border-radius: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 203px;
    height: 96px;
    padding: 24px 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.partner-card img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .partner-container {
        margin-top: 10px;
    }
    .partner-card {
        width: 150px;
        height: 90px;
    }
    
    .tp-integration-slider-wrapper {
        gap: 15px;
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* partnert-container-end */

@media (max-width: 768px) {
    #news .d-flex.flex-md-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    #news .d-flex.flex-md-row h1,
    #news .d-flex.flex-md-row p {
        text-align: center !important;
    }
}


.news-card {
    width: 360px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: space-between; 
}

.news-body {
    flex: 1;
    height: 80%;
}
  
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
  
.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
  
.news-content {
    padding: 20px;
    height: 100%;
    background: linear-gradient(180deg, #111 80%, #000 100%);
    position: relative;
}
  
.news-date {
    font-size: 20px;
    color: #ECECEC;
    margin-bottom: 6px;
    line-height: 24px;
    font-weight: 400;
}
  
.news-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 22px;
    text-align: start;
    color: #ECECEC;
}
  
.news-desc {
    color: #d1d1d1;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;   
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-desc,
.news-desc * {
    font-size: 14px !important;
    color: #d1d1d1 !important;
    line-height: 1.5 !important;
    text-align: left !important;
}
  
.news-link {
    color: #b34cb2;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 4px;
    transition: color 0.3s;
}
  
.news-link:hover {
    color: #d762d5;
}

@media (max-width: 992px) {
    .news-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .news-image img {
        height: 200px;
    }

    .news-content {
        padding: 16px;
    }

    .news-title {
        font-size: 17px;
    }

    .news-desc {
        font-size: 14px;
    }

    .news-date {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .news-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .news-image img {
        height: 180px;
    }

    .news-content {
        padding: 14px;
        text-align: center;
    }

    .news-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .news-desc {
        font-size: 13px;
        text-align: center;
    }

    .news-date {
        font-size: 14px;
    }

    .news-link {
        justify-content: center;
        font-size: 14px;
    }
}

.arrow {
    font-size: 18px;
    line-height: 1;
}

.card-certificate-image img{
  display: block;
}

@media (max-width: 767px) {
  .card-certificate-image img {
    display: none !important;
  }
}

.card-certificate {
    background: linear-gradient(90deg, #212121 0%, #080808 100%);
    padding: 22px 42px;
    border-radius: 48px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.card-certificate-content p {
    text-align: start;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #fff;
}

.card-certificate-content h4 {
    font-weight: 600;       
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;     
    text-align: start;
    color: #fff;           
}

@media (max-width: 1023px) {
    .card-certificate-content h4 {
        font-size: 16px;
        line-height: 24px;
        text-align: start;
    }

    .card-certificate-content p {
        font-size: 12px;
        line-height: 20px;
        text-align: start;
    }

    .card-certificate {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .card-certificate-image img {
        width: 50px;
    }
}

@media (max-width: 767px) {
    .card-certificate-content h4 {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .card-certificate-content p {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
    }

    .card-certificate {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .card-certificate-image img {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .card-certificate {
        flex-direction: column;   
        padding: 20px 24px;         
        border-radius: 24px;      
        gap: 16px;                  
    }

    .card-certificate-content h4,
    .card-certificate-content p {
        text-align: center;
    }

    .card-certificate-col{
        margin-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-certificate {
        flex-direction: row;   
        padding: 20px 24px;         
        border-radius: 32px;
        gap: 12px;
    }

    .card-certificate-col{
        margin-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        max-width: 300px;
        width: 100%;
    }
}

.container-services{
    background-color: #171717;
    padding: 48px 36px; 
    gap: 56px;
    border-radius: 48px;
}

.card-container-service{
    border: 1px #000;
    border-radius: 36px;
    background-color: #35092F;
    transition: all 0.3s ease;
}

.card-container-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.card-top{
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.card-service {
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: left;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.icon-wrapper {
    background-color: #60215A;
    border-radius: 32px;
    width: 60px;
    height: 60px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.icon-img {
    width: 100%;
    height: auto;
    max-width: 32px;
}

.btn-view-full {
    width: 100%;
    background-color: #450C3D;
    color: #fff;
    border: none;
    border-radius: 0 0 36px 36px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-view-full img {
  transition: transform 0.3s ease;
}

.btn-view-full[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.btn-view:hover {
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon {
  width: 24px !important;
  height: 24px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-item .text p {
  color: #BBBBBB;
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
    #services {
        padding: 0 2rem;
    }

    .container-services {
        padding: 32px 24px;
        border-radius: 36px;
    }

    .card-container-service {
        border-radius: 28px;
    }

    .card-top {
        padding: 16px;
    }

    .text-content h1 {
        font-size: 28px;
    }

    .text-content p {
        font-size: 16px !important;
    }

    /* .row {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .col {
        flex: 1 1 45%;
        margin-bottom: 16px;
    } */
}

@media (max-width: 576px) {
    #services {
        padding: 0 1rem;
        margin-top: 40px !important;
    }

    .container-services {
        padding: 20px 16px;
        border-radius: 24px;
        gap: 24px;
    }

    .text-content h1 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .text-content p {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .card-container-service {
        border-radius: 20px;
        padding: 0;
    }

    .card-top {
        padding: 12px;
    }

    .card-services h5 {
        font-size: 16px;
    }

    .btn-view-full {
        font-size: 14px;
        padding: 10px;
    }

    .feature-col {
        flex: 1 1 100%;
        margin-bottom: 0px;
    }
}

.text-responsive-align {
    text-align: start !important;
}

@media (min-width: 1024px) {
    .text-responsive-align {
        text-align: justify !important;
    }
}

.not-found { 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not-found h2 {
    color: #333333;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
}

.not-found p{
    color: #333333;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
}

.text-more {
    font-family: 'Inter', sans-serif;
    font-weight: 500; 
    font-style: normal;
    font-size: 16px;
    line-height: 24px; 
}

.hero-wrapper {
    align-items: center;
}

.hero-identity {
    position: absolute;
    bottom: 40px;
    left: 52%;
    transform: translateX(-50%);
    background-image: linear-gradient(
        to right,
        rgba(169, 99, 159, 0.6), 
        rgba(69, 12, 61, 0.6)
    );    
    padding: 12px 20px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.hero-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.750rem;
}

.hero-status {
    color: #ffffff;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .hero-wrapper {
        align-items: end;
    }
}

@media (min-width: 1280px) {
    .hero-wrapper {
        align-items: center;
    }
    
    .content-hero {
        align-items: center;
    }

    .content-image {
        align-items: end;
    }
}

@media (min-width: 768px) and (max-width: 1280px){
    .hero-identity {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        background-image: linear-gradient(
            to right,
            rgba(169, 99, 159, 0.5),
            rgba(69, 12, 61, 0.5)
        );
        padding: 10px 16px;
        border-radius: 12px;
        backdrop-filter: blur(4px);
        width: max-content;
    }

    .hero-name {
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .hero-status {
        color: #ffffff;
        font-weight: 400;
        font-size: 0.9rem;
        line-height: 1.4rem;
    }
}