.content-hero {
    color: #BBBBBB; 
    padding: 3rem 7rem;
}

.hero-wrapper .content-hero {
    padding-right: 0;
}

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

@media (max-width: 767.98px) {
    .content-hero {
        padding: 2rem 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 {
    background-image: url('../img/footer/bg-cta-pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-image img {
    padding-left: 5rem;
    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: rgba(0, 42, 209, 1);
    border-radius: 20px;
    color: #FFFFFF;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none; 
}

.btn-white {
    background: #FFFFFF;
    border-radius: 20px;
    color: #002AD1;
    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(
        ellipse 110% 23% at 15% 14%,
        #001773 100%,
        #001258 100%
    );
    max-width: 550px;
    width: 100%;
    height: 290px;
    padding: 28px 32px;
    border-radius: 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-wrapper{
    display: flex;
    justify-content: center;
}

.feature-header { 
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-header h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #F8FAFC;
}

.feature-description {
    margin: 24px 0;
    background-image: url('/img/landing-page/bg-solution.png');
    background-size: cover;        
    background-position: center;  
    background-repeat: no-repeat;  
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;   
    padding-right: 32px;  
}

.feature-description p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
    color: #E2E8F0;
}

@media (min-width: 1441px) {
    .feature-card {
        max-width: 650px;
        width: 100%;
    }
}

@media (max-width: 767.9px) {
    #why-us {
        padding: 40px 32px;
    }

    .feature-card {
        background: radial-gradient(
            ellipse 90% 17% at 20% 13%,
            #001773 100%,
            #001258 100%
        );
        max-width: 100%;
        height: max-content ;
        padding: 22px 24px;
        border-radius: 32px;
    }

    .feature-header {
        gap: 10px;
    }

    .feature-header h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .feature-description p {
        padding: 14px 0;
        font-size: 16px;
        line-height: 24px; 
    }
}

@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;
}

.partner-section{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 0 50px;
}

@media (min-width:768px) and (max-width: 1278.9px) {
    .partner-section {
        display: grid;
        grid-template-columns: repeat(3, max-content);
        gap: 20px;
        padding: 0;
    }

    .partner-card:nth-child(4) {
        grid-row: 2;
        grid-column: 1 / 3; 
        justify-self: center;
    }

    .partner-card:nth-child(5) {
        grid-row: 2;
        grid-column: 2 / 4;
        justify-self: center;
    }

}

@media (max-width: 767.9px) {
    .partner-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        justify-items: center;
    }

    .partner-card:nth-child(5) {
        grid-column: 1 / -1;   
        justify-self: 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;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 203px;
    height: 96px;
    padding: 24px 12px;
    border: 1px solid #B0BDF1;
}

.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 */

#news .container {
    margin: 40px 50px;
}

.news-card {
    width: 100%;
    height: 650px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid #B0BDF1;

    background-image: url('/img/landing-page/bg-news.png');
    background-size: cover;        
    background-position: center;  
    background-repeat: no-repeat;   
       
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-body {
    flex: 1;
    height: 80%;
}
  
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}
  
.news-image {
    padding: 20px 20px 0 20px;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 36px;
}
  
.news-content {
    background-image: url('/img/card/bg-news-card.png');
    background-size: cover;
    background-position: center;
    padding: 10px 36px 36px 36px;
    display: flex;
    flex-direction: column;
}

.news-body {
    gap: 12px;
    display: flex;
    flex-direction: column;
}
  
.news-date {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -1.5%;
    color: #000000;
    opacity: 0.5;
    text-align: justify;
}
  
.news-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -1.5%;
    color: #000000;
    text-align: start;
}
  
.news-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -1.5%;
    color: #333333;
    text-align: justify;

    display: -webkit-box; 
    -webkit-line-clamp: 5; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
  
.news-link {
    width: 100%;
    padding: 16px 28px;
    background: #001E94;
    color: #FFFFFF;
    border-radius: 0 0 36px 36px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}
  
.news-link:hover {
    color: #d762d5;
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .news-card {
        margin-bottom: 16px;
        height: 560px;
    }
}

@media (max-width: 992px) {
    .news-card {
        margin-bottom: 16px;
        height: 530px;
    }

    .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.9px) {
    #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 .container {
        margin: 20px 32px;
    }   

    .news-card {
        margin-bottom: 16px;
        height: 500px;
    }

    .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: justify;
        word-spacing: -3px;
    }

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

    .news-link {
        font-size: 14px;
        padding: 16px 28px;
    }
}

.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%;
    }
}

.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;
    }

    .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 {
        margin-top: 40px !important;
    }

    .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 {
    width: 100%;
    min-height: 735px; /* tinggi sesuai desain */
    background: linear-gradient(
        270deg,
        rgba(14, 14, 14, 0) 0%,
        rgba(14, 14, 14, 0.05) 20.13%,
        rgba(14, 14, 14, 0.5) 57.75%
    ),
    url('../img/hero/potrait-male-background.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    align-items: center;
    max-width: 900px;
    width: 100%;
    padding: 30px;
}

.hero-title{
    color: #FFFFFF;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 42px;
}

.hero-title span {
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0;
}

.hero-desc{
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 28px;
}

.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 (max-width: 757.9px) {
    .hero-wrapper {
        padding: 0;
    }

    .content-hero {
        padding: 0;
    }

    .hero-title {
        font-size: 20px;     
        line-height: 30px;    
        text-align: center;   
    }

    .hero-title span {
        font-size: 36px;      
        line-height: 44px;    
        display: block;       
        text-align: center;
    }

    .hero-desc {
        font-size: 16px;     
        line-height: 26px;   
        text-align: center;   
        padding: 0 12px;   
    }
}

@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;
    }
}

#safety-tools{
    padding: 0 110px;
}

@media (max-width:767.9px) {
    #safety-tools{
        padding: 0 1.75rem;
    }
}

.safety-tools-text h1{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 10px;
}

.safety-tools-text h1 span {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: rgba(190, 0, 0, 1);
}

.safety-tools-text p {
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 28px;
    color: rgba(96, 96, 96, 1);
}

@media (max-width: 1023.9px) {
    .safety-tools-text{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.cta-content {
    position: relative;
}

.cta-security-text h1{
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
}

.cta-security-text p{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

@media (max-width: 1024px) {
    #cta-security .container {
        background-image: url('../img/footer/bg-cta-pattern.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 30px;
    }

    .cta-security-text h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .cta-security-text p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .cta-security-text h1 {
        font-size: 28px;
        line-height: 36px;
        text-align: center; /* biar rapi di layar kecil */
    }

    .cta-security-text p {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }
}

.tp-footer__pl-pr {
    background-color: #F8FAFC;
    margin-left: 3rem;
    margin-right: 3rem;
}

@media (max-width: 767px) {
    .tp-footer__pl-pr {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .tp-footer__logo {
        display: flex;
        justify-content: center;
        align-items: center; 
        margin-bottom: 1.5rem;
    }

    .tp-footer__logo-section p {
        text-align: center;
        font-size: 16px !important;
    }

    .tp-footer__logo-section {
        align-items: center !important;
    }

    .tp-footer__logo-section .d-flex {
        justify-content: center;
    }

    .tp-footer__logo-section img {
            width: 20px;
    }
}

#workforce-management{
    padding: 50px 100px;
}

.workforce-management-texts{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.workforce-management-texts h1{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #333333;
}

.workforce-management-texts h1 span {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #BE0000;
}

.workforce-management-texts p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #414141;
}

@media (max-width: 1023.9px) {
    #workforce-management{
        padding: 50px 60px;
    }
}

@media (max-width: 767.9px) {
    #workforce-management{
        padding: 20px;
    }

    .workforce-management-texts h1{
        font-weight: 600;
        font-size: 28px;
        line-height: 36px;
        text-align: center;
        color: #333333;
    }

    .workforce-management-texts h1 span {
        font-weight: 600;
        font-size: 28px;
        line-height: 36px;
        text-align: center;
        color: #BE0000;
    }

    .workforce-management-texts p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        color: #414141;
    }
}

#services .container {
    padding: 0 110px;
}

.service-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: start;
    color: #BE0000;
    width: 100%;
}

.service-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #4A4A4A;
}

.service-card {
    width: 100%;
    min-height: 184px;
    padding: 28px 32px;
    border-radius: 64px;

    background: radial-gradient(
        7% 54.45% at 4% 50%,
        #001e94 99.23%,
        #001773 100%
    );

    color: #fff;
}

.service-icon{
    width: 104px;
    height: 104px;
}

.service-content{
    text-align: justify;
    width: 85%;
}

.service-content h2{
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
}

.service-content p{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #E2E8F0;
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .service-card {
        padding: 24px 28px;
        border-radius: 48px;
        min-height: 170px;
        background: radial-gradient(
            8% 54.45% at 4% 50%,
            #001e94 99.23%,
            #001773 100%
        );
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-content {
        text-align: justify;
        width: 800px;
    }
}

@media (max-width: 1279.9px) {
    .service-card {
        padding: 24px 28px;
        border-radius: 48px;
        min-height: 170px;
        background: radial-gradient(
            15% 54.45% at 4% 50%,
            #001e94 99.23%,
            #001773 100%
        );
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-content {
        text-align: justify;
        width: 600px;
    }

    .service-title {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }
}

@media (max-width: 1023.9px) {
    #services .container {
        padding: 0 24px;
    }

    .service-desc {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
    }

    .service-card {
        padding: 24px 28px;
        border-radius: 48px;
        min-height: 170px;
        background: radial-gradient(
            15% 54.45% at 4% 50%,
            #001e94 99.23%,
            #001773 100%
        );
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-content {
        text-align: justify;
        width: 550px;
    }
}

@media (max-width: 768px) {
    #services .container {
        padding: 0 16px;
    }

    .service-title {
        font-size: 26px;
        line-height: 32px;
    }

    .service-desc {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }

    .service-card {
        padding: 20px 22px;
        border-radius: 36px;
        min-height: auto;
        text-align: center;
        background: radial-gradient(
            15% 54.45% at 4% 50%,
            #001e94 99.23%,
            #001773 100%
        );
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-content {
        width: 500px;
        text-align: justify;
    }

    .service-content h2 {
        font-size: 18px;
        line-height: 26px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 22px;
    }
}


@media (max-width: 560px) {
    .service-card {
        padding: 20px 22px;
        border-radius: 36px;
        min-height: auto;
        text-align: center;
        background: #001773;
    }

    .service-content {
        width: 530px;
        text-align: center;
    }
}

/* Documentation section */
#documentation{
    padding: 100px;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

.docs-grid .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 1023.9px) {
    #documentation{
        padding: 50px;
    }

    .docs-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom */
        grid-auto-rows: 200px;
    }
}

@media (max-width: 767.9px) {
    #documentation{
        padding: 35px;
    }

    .docs-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 kolom */
        grid-auto-rows: 180px;
    }
}
