body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

p {
    font-family: 'Inter', sans-serif;
}

/* hero section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 50px;
    overflow: hidden;
    background: #021F57;
    padding: 140px;
    padding-bottom: 110px !important;
    position: relative;
    z-index: 1;
    border-bottom-left-radius: 256px;
    border-bottom-right-radius: 256px;
}

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

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

.hero-content .hero-title {
    color: #ffffff;
    font-size: 2.250rem; 
    font-style: normal;
    font-weight: 600;
}

.hero-content .hero-desc {
    color: #ffffff;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 20px 0;
}

.hero-button {
    width: 180px;
    height: 50px;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 24px;
    background: #ffffff;
    color: #032871;
    box-shadow: 0px 20px 34px 0px rgba(22, 94, 240, 0.20);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    transition: transform 0.3s ease; 
}

.hero-button:hover {
    transform: scale(1.05);
}

.hero-button a {
    color: #032871;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}

body.dark-mode .hero-link {
    color: #032871 !important;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 580px;
    margin: 0 auto;
}

.hero-image-container .hero-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1279.9px) {
    .hero-section {
        margin: 0px;
    }
}
@media (max-width: 768px) {
    .hero-section {
        margin: 0px;
        padding: 40px 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .hero-title {
        font-size: 2rem;
        margin-top: 60px;
    }

    .hero-content .hero-desc {
        font-size: 0.85rem;
    }

    .hero-button {
        margin: 25px auto;
    }

    .hero-image-container {
        width: 120%;
        height: auto;
        margin-top: 30px;
    }

    .hero-main-image img {
        max-width: 100%;
        height: auto;
    }
}

/* partner section */
.partner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    /* background-color: rgba(22, 94, 240, 0.06); */
    padding: 20px;
}

.partner-title {
    font-weight: 500;      
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;    
    text-align: center;
}

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

.partner-card {
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 200px;
    height: 100px;
    background-color: #ffffff;
}

.partner-card img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 15px;
    object-fit: contain;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* about section */
.about-section {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #165EF00D;
    border-radius: 20px;
    max-width: 1200px; 
    margin: 150px auto; 
    padding: 20px;
    min-height: 328px;
}

.text-content {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    z-index: 1;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    color: #5E6282;
}

.image-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    margin-top: -60px;
}

.image-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    max-height: none;
}

@media (max-width: 768px) {
    .about-section {
        margin: 40px 15px;
        padding: 25px;
        flex-direction: column;
        min-height: auto;
    }

   .text-content {
        max-width: 100%;
        padding: 10px;
        text-align: center;
        margin-bottom: 30px;
    }

    .text-content h3 {
        font-size: 2rem;
        text-align: center;
    }

    .text-content p {
        font-size: 1rem;
        text-align: center;
    }

    .image-content {
        width: 100%;
        position: relative;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .image-content img {
        position: relative;
        width: 120%;
        max-width: 550px;
        height: auto;
        right: 0;
        margin: 0 auto;
        display: block;
    }
}

/* information-section */
.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
    min-height: 250px;
    gap: 3rem;
}

.info-image {
    flex: 0 0 25%;
}

.info-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.info-text-content {
    flex: 0 0 75%;
}

.info-desc {
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    color: #333;
}

@media (max-width: 768px) {
    .info-section {
        margin: 40px auto;
        padding: 10px !important;
        flex-direction: column;
        min-height: auto;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .info-section {
        margin: 40px 20px;
        padding: 30px;
        min-height: auto;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    
    .info-image {
        flex: 0 0 20%;
    }

    .info-text-content {
        flex: 0 0 80%;
    }
}


/* service-section */
.service-section {
    align-items: center;
    margin: 40px auto; 
    min-height: 328px;
    max-width: 1200px; 
    /* background-color: tomato; */
}

.service-text-content {
    flex: 1;
    max-width: 100%;
    text-align: center;
}

.service-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.service-desc{
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    color: #333;
}

.service-card-desc {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.3;
}

.service-box-container {
    margin-top: 20px;
    width: 100%;
    min-width: auto;
    overflow: hidden;
    padding: 0% 30px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    width: auto;
    min-width: 350px;
    border-radius: 10px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    height: 472px;
    background: #F1F5F9;
    padding: 25px;
    border: 1px solid #D1D5DB; 
}

.service-icon {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

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

.service-card-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
}

.service-point {
    width: 100%;
    margin-top: 0px;
}

.service-point ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-point ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5E6282;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.service-point ul li i {
    color: #3660B2;
    font-size: 1rem;
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #0101AF; */
    border-radius: 20%;
}

@media (max-width: 820px) {
    .service-section {
        margin: 40px 20px;
        flex-direction: column;
        min-height: auto;
    }

    .service-box-container {
        padding: 0px 15px;
    }

   .service-text-content {
        max-width: 100%;
        padding: 10px;
        text-align: center;
    }

    .service-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        width: 100%;
        min-width: 300px;
        border-radius: 10px;
    }

    .service-card {
        width: 100%;
        height: 500px;
        padding: 15px;
    }  

    .service-card-title h4{
        font-size: 1.25rem;
    }
}

/* portofolio section */
.portofolio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 150px auto;
    min-height: 328px;
    max-width: 1200px;
}

.portofolio-container {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse ;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
}

.portofolio-title {
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 2.250rem;
}

.portofolio-desc {
    font-weight: 400;
    font-style: reguler;
    font-size: 1.125rem;
    line-height: 1.750rem;
    width: 100%;
}

.portofolio-tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    width: 50%;
    margin-right: 20px;
}

.portofolio-item-content p {
    color: #8E8E8E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.portofolio-item-header button {
    padding: 0;
    font-weight: 600;
    font-size: 32px;
    line-height: 30px;
    color: #333;
    text-align: start;
    cursor: pointer;
    transition: color 0.3s ease;
}

.portofolio-item-header button.active {
    color: #0101AF;
}

.portofolio-item-header button img {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.portofolio-item-header button:hover img {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .portofolio-text-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd; 
    }
    .portofolio-desc {
        font-weight: 400;
        font-style: reguler;
        font-size: 1.375rem;
        line-height: 2rem;
        width: 100%;
    }

    .portofolio-tab .portofolio-item {
        margin: 0px 10px;
        padding-bottom: 25px;
    }
    .portofolio-container {
        gap: 0px;
    }

    .portofolio-item-header button {
        padding: 0;
        font-weight: 600;
        font-size: 32px;
        line-height: 30px;
        color: #333;
        text-align: start;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .portofolio-item-content p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .portofolio-item-header button img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width:767.9px) {
    .portofolio-section {
        margin: 80px auto;
        padding: 0 16px;
        align-items: center;
    }
    .portofolio-text-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 15px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd; 
    }

    .portofolio-title {
        font-weight: 700;
        font-style: normal;
        font-size: 2rem;
        line-height: 1.1250rem;
    }

    .portofolio-desc {
        font-weight: 400;
        font-style: reguler;
        font-size: 1rem;
        line-height: 1.750rem;
        width: 100%;
    }

    .portofolio-container{
        display: flex;
        flex-direction: column;
    }

    .portofolio-tab {
        width: 100%;
    }

    .portofolio-item-header button {
        padding: 0;
        font-weight: 600;
        font-size: 22px;
        line-height: 24px;
        color: #333;
        text-align: start;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .portofolio-item-content p {
        color: #8E8E8E;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        margin: 0;
    }
}

.portofolio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.portofolio-card:hover {
    transform: translateY(-5px);
}

.portofolio-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 24px;
}

.portofolio-item h2 {
    font-size: 18px;
    font-weight: 500;
    color: #9a9a9a;
    margin-top: 4px;
}

.portofolio-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portofolio-item-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.portofolio-item-header button:hover {
    color: #0101AF;
}

.portofolio-item-header img {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    margin-bottom: 16px;
}

.image-porto {
    margin-left: 20px;
}

.tab-button {
    display: flex;
    width: 200px;
    height: 42px;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #F9F5FF;
    color: #0101AF;
    font-weight: 600;
}

.tab-button:hover {
    background-color: #0101AF;
}

.tab-button.active {
    background-color: #0101AF;
    color: #ffffff;
}

.price-tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.price-tab-button {
    display: flex;
    width: 400px;
    height: 42px;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #F9F5FF;
    color: #0101AF;
    font-weight: 600;
}

.price-tab-button:hover {
    background-color: #0101AF;
}

.price-tab-button.active {
    background-color: #0101AF;
    color: #ffffff;
}

.container-portofolio {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.container-portofolio.active {
    display: grid;
}

.portofolio-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portofolio-card:hover {
    transform: translateY(-5px);
}

.portofolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portofolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portofolio-text-content{
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd; 
}

.portofolio-text-content .portofolio-title {
    width: 100%;
}

.portofolio-text {
    padding: 20px;
    text-align: center;
}

.portofolio-title-card {
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* price section */
.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px auto;
    min-height: 328px;
    max-width: 1200px;
}

.price-text-content {
    flex: 1;
    max-width: 100%;
    justify-content: center;
    margin-bottom: 50px;
}

@media (max-width: 767.9px) {
    .price-text-content {
        margin-bottom: 25px;
    }
}

.price-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

.price-description{
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3;
}

.price-tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.price-tab-button {
    display: flex;
    width: 300px;
    height: 42px;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #F9F5FF;
    color: #0101AF;
    font-weight: 600;
}

.price-tab-button:hover {
    color: #ffffff;
    background-color: #0101AF;
}

.price-tab-button.active {
    background-color: #0101AF;
    color: #ffffff;
}

/* .container-price {
    display: none;
} */

.container-price {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.container-price.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    #price_web_development.active {
        display: grid;
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 24px;
        justify-content: center;
    }
}

.slider-mode {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
}

.container-price.active {
    display: grid;
}

/* company_brand */
.price-brand-identity-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    padding: 25px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-brand-identity-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.price-brand-identity-text-content{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #aca8a8; 
}

.price-brand-identity-title {
    color: #181E4B;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
}

.price-brand-identity-desc {
    color: #5E6282;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.price-brand-identity-pricefix {
    color: #04389F;
    font-weight: 700;
    font-size: 1.875rem; 
}

.price-year{
    color: #04389F;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.15;
}

@media (max-width: 1024px) {
    .price-brand-identity-text-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .price-brand-identity-title {
        font-size: 1.25rem;
    }

    .price-brand-identity-pricefix {
        font-size: 1.75rem;
    }

    .price-card-price-container{
        display: flex;
        flex-direction: column;
    }

    .price-card-pricedisc{
        text-align: center;
        width: 100%;
        margin-bottom: 0px;
    }

}

@media (max-width: 768px) {
    .price-brand-identity-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .price-brand-identity-title {
        font-size: 1.125rem;
        text-align: left;
    }

    .price-wrapper {
        justify-content: flex-start;
    }

    .price-brand-identity-pricedisc {
        font-size: 0.875rem;
    }

    .price-brand-identity-pricefix {
        font-size: 1.5rem;
    }

    .price-year {
        font-size: 0.75rem;
    }

    .price-card-price-container{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .price-brand-identity-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 0;
        gap: 4px;
    }

    .price-brand-identity-title {
        font-size: 1rem;
        text-align: center;
    }

    .price-brand-identity-pricefix {
        font-size: 1.375rem;
        text-align: center;
    }

    .price-brand-identity-pricedisc{
        text-align: center;
    }

    .price-top{
        text-align: center;
    }

    .price-card-price-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.price-brand-identity-notes {
    color: #5E6282;
    font-size: 0.85rem;
    line-height: 1.8;
}

.price-brand-identity-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.price-brand-identity-feature ul > li {
    display: flex;
    align-items: flex-start; 
    gap: 8px; 
    color: #5E6282;
    margin-bottom: 15px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.price-brand-identity-feature img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.price-brand-identity-feature ul > li:has(ul) {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0px;
}

.price-brand-identity-feature .list-head {
    gap: 10px;
}

.price-brand-identity-feature ul p {
    display: column;
    align-items: center;
    color: #5E6282;
    margin-bottom: 15px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.price-brand-identity-feature ul li:nth-child(n+10),
.price-brand-identity-feature ul p:nth-child(n+10) {
    display: none;
}

.price-brand-identity-feature.show-all ul li,
.price-brand-identity-feature.show-all ul p {
    display: flex;
}

.price-brand-identity-feature ul {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: auto;
}

.price-brand-identity-feature i {
    background-color: transparent;
    color: #0101AF;
    font-size: 14px;
    margin-right: 10px;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid #0101AF;
}

.price-brand-identity-feature .list-head {
    margin-bottom: 0px;
}

/* .price-brand-identity-card:hover {
    background: #1E1E1E;
    transform: translateY(-5px);
} */

.price-brand-identity-pricedisc {
    color: #8E8E8E; 
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

/* .price-brand-identity-card:hover .price-brand-identity-title {
    color: #FFF;
} */

/* .price-brand-identity-card:hover .price-brand-identity-pricedisc {
    color: #FFF;
} */

/* .price-brand-identity-card:hover .price-brand-identity-pricefix,
.price-brand-identity-card:hover .price-year
{
    color: #F00;
} */

/* .price-brand-identity-card:hover .price-brand-identity-notes {
    color: #FFF;
} */

/* .price-brand-identity-card:hover .price-brand-identity-feature ul li {
    color: #FFF;
} */

/* .price-brand-identity-card:hover .price-brand-identity-feature i {
    background-color: #0101AF;
    color: #ffffff;
} */

/* .price-brand-identity-card:hover .price-brand-identity-feature ul p {
    color: #FFF;
} */

.box-button-price-brand-identity {
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.detail-pricing-button {
    width: 80%;
    padding: 12px 24px;
    background: #04389F;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.pricing-btn:hover {
    background: #1252d6;
}

/* price */
.price-card {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover{
    transform: scale(1.05);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

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

.price-card-time {
    color: #777777;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.price-card-title {
    color: #000;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.price-card-price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.price-card-pricedisc {
    color: #8E8E8E;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.price-card-pricefix {
    color: #04389F;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.price-card-category {
    display: flex;
    margin: 7px 0;
    padding: 7px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #F00;
    color: #ffffff;
}

.price-brand-identity-feature {
    margin-top: 10px;
    width: 100%;
}

.box-button-price {
    display: flex;
    margin: 15px auto;
    padding: 10px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    border-radius: 6px;
    background: #0101AF;
    color: #ffffff;
}

.price-brand-identity-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-brand-identity-feature li {
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #000;
    font-size: 0.95rem;
}

.price-brand-identity-feature img {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.price-brand-identity-feature ul.price-detail-point {
    list-style: disc !important; 
    margin-left: 32px; 
    padding-left: 20px;
    margin-bottom: 10px;
    color: #777;
}

.price-brand-identity-feature ul.price-detail-point li {
    display: list-item !important;
    list-style-type: disc !important;
}

.price-detail-point li {
    display: list-item !important;
    margin-bottom: 0px !important;
}

.price-brand-identity-feature li ul.price-detail-point {
    margin-left: 28px;
    display: block;
}

/* .price-card:hover {
    background: #1E1E1E;
    transform: translateY(-5px);
}

.price-card:hover .price-card-time {
    color: #FFF;
}

.price-card:hover .price-card-title {
    color: #FFF;
}

.price-card:hover .price-card-pricedisc {
    color: #FFF;
}

.price-card:hover .price-card-pricefix,
.price-card:hover .price-year
{
    color: #F00;
}

.price-card:hover .price-card-category {
    background: #FFF;
    color: #0101AF;
}

.price-card:hover .price-brand-identity-feature ul li {
    color: #FFF;
}

.price-card:hover .price-brand-identity-feature i {
    background-color: #0101AF;
    color: #ffffff;
}

.price-card:hover .box-button-price {
    background: #FFF;
    color: #0101AF;
} */

@media (max-width: 768px) {
    .price-section {
        margin: 40px auto;
        padding: 25px;
    }

    .price-title {
        font-size: 2rem;
    }

    .price-tab {
        gap: 10px;
        margin: 20px auto;
    }

    .price-tab-button {
        width: 150px;
        height: 40px;
        font-size: 0.7rem;
    }

    .container-price.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .price-brand-identity-card {
        margin: 15px auto;
        padding: 20px;
        width: 100%;
    }

    .price-brand-identity-title {
        font-size: 1.5rem;
    }

    .price-brand-identity-desc {
        font-size: 0.9rem;
    }

    .price-brand-identity-pricefix {
        font-size: 2.5rem;
    }

    .price-brand-identity-notes {
        font-size: 0.8rem;
    }

    .price-brand-identity-feature ul li,
    .price-brand-identity-feature ul p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .detail-pricing-button {
        width: 100%;
        font-size: 14px;
        padding: 10px 20px;
    }

    .price-card {
        width: 100%;
        margin: 10px auto;
    }

    .price-card-title {
        font-size: 1.5rem;
    }

    .price-card-time,
    .price-card-pricedisc {
        font-size: 0.9rem;
    }

    .price-card-pricefix {
        font-size: 2.5rem;
    }

    .price-card-category {
        font-size: 0.9rem;
        padding: 5px 12px;
    }

    .box-button-price {
        padding: 8px;
        font-size: 0.9rem;
    }
}

body.dark-mode .price-card{
    background-color: #021F57;
    border: 1px solid #043391;
    color: #ffffff;
}

/* testimonial section */
.testimonial-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

.testimonial-text-content {
    flex: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.testimonial-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0F211F;
    margin-left: 0;
}

.title-span{
    color: #0101AF;
}

.testimonial-desc {
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-swiper-container {
    padding: 10px 0;
    width: 100%;
    min-width: auto;
    overflow: hidden;
}

.testimonial-swiper-container .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.testimonial-card {
    background-color: #3660B2;
    width: 384px;
    height: 270px;
    border-radius: 32px;
    padding: 28px;
    transition: transform 0.4s ease, background-color 0.3s ease;
    text-align: left;
}

/* .swiper-slide-active .testimonial-card{
    background-color: #073593;
    transform: scale(1.10); 
} */

.testimonial-top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 170px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;

    border-top: 1px solid #FFFFFF;
    padding-top: 10px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info .name {
    font-weight: bold;
    color: #ffffff;
}

.testimonial-text {
    font-size: 1rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .testimonial-section {
        margin: 40px auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
        min-height: auto;
        justify-content: center;
        align-items: center;
        border-radius: 0px;
    }

    .testimonial-container {
        margin: 10px auto;
        flex-direction: column;
        min-height: auto;
    }

    .testimonial-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
    }

    .testimonial-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .testimonial-swiper-container {
        margin-top: 20px;
        padding: 10px 0;
        width: 100%;
        min-width: auto;
        overflow: hidden;
    }

    .testimonial-card {
        width: 300px;
        height: 300px;
        padding: 20px;
    }

    .testimonial-top{
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 200px;
        text-align: justify;
    }

    .testimonial-text {
        font-size: 0.875rem;
    }

    .user-info .name {
        font-size: 0.9rem;
    }
}

body.dark-mode .title-span{
    color: #ffffff;
}

/* faq section */
.faq-section {
    display: flex;
    flex-direction: column;
    margin: 100px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.faq-title {
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.faq-desc {
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 24px;
    border: 2px solid #B0B0C0;
    padding: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    inset: 0;
    background: url("/public/img/satu-creative/bg-pattern-faq.png") no-repeat center/contain;
    z-index: 0;
}

.faq-question {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    border-radius: 15px;
    font-size: 1rem;
    text-align: start;
    font-weight: 600;
    z-index: 1;
}

.faq-answer {
    display: none;
    overflow: hidden;
    padding: 10px;
    background-color: #0101AF;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    border-radius: 15px;
    color: #ffffff;
}

/* .faq-answer.show {
    display: block;
} */

.plus-icon, .minus-icon{
    display: inline-flex;
    justify-content: center;        
    align-items: center;               
    font-size: 20px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 20px;
}

.plus-icon {
    color: #ffffff;
    background-color: #0101AF;
}

.plus-icon .active {
    color: #0101AF;
    background-color: #ffffff;
}

.minus-icon {
    font-size: 20px;
    color: #0101AF;
    background-color: #ffffff;
    display: none; 
}

.minus-icon.active {
    display: inline-block;
}

.faq-item.active {
    border: 2px solid #0101AF;
    background-color: #0101AF;
    height: auto;
}

.faq-item.active .faq-question {
    background-color: #0101AF;
    color: #ffffff;
}

.faq-item.active .plus-icon {
    color: #0101AF;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .faq-section {
        margin: 40px auto;
        padding: 25px;
        flex-direction: column;
        min-height: auto;
    }

    .faq-title {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }

    .faq-item {
        margin: 15px 0;
        padding: 15px;
    }

    .faq-question {
        padding: 10px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .plus-icon, .minus-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        padding: 8px;
        line-height: 16px;
    }

    .row {
        margin: 0;
    }

    .col-md-6 {
        padding: 0 5px;
    }
}

/* banner section */
.banner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #021843;
    color: #ffffff;
    border-radius: 40px;
    max-width: 1200px;
    margin: 100px auto;
    min-height: 300px; 
    text-align: center;  
}

.banner-card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .banner-card-box .col-md-6 {
    flex: 1;
    max-width: 500px;
    text-align: left;
} */

.banner-image {
    width: 80%; 
    height: auto;
    position: relative;
    right: -60px;
    bottom: -50px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.banner-title span {
    font-weight: 700;
}

.banner-desc {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
    color: #ffffff;
}

.banner-button a:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.banner-button {
    width: 180px;
    height: 50px;
    gap: 10px;
    border-radius: 10px;
    background-color: #ffffff   ;
    box-shadow: 0px 19.907px 34.837px 0px rgba(22, 94, 240, 0.20);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-button a {
    color: #0101AF;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
   .banner-section {
        margin: 40px 20px;
        padding: 30px 20px;
        min-height: auto;
        border-radius: 30px;
    }

    .banner-card-box {
        flex-direction: column;
        gap: 15px;
    }

    .banner-card-box .col-md-6 {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .banner-image {
        display: none;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .banner-desc {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .banner-button {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .banner-button a {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .banner-section {
        margin: 50px 20px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }
}

/* Hero */
body.dark-mode .hero-title,
body.dark-mode .hero-desc {
    color: #ffffff;
}

body.dark-mode .hero-title span {
    color: #0101AF;
}

body.dark-mode .hero-section {
    background-color: #021F57 !important;
}

/* Partner */
body.dark-mode .partner-section {
    background-color: #165EF00D;
}

/* Service */
body.dark-mode .service-section {
    background-color: #2c2c2c;
}

body.dark-mode .service-title,
body.dark-mode .service-card-title h4,
body.dark-mode .service-desc p,
body.dark-mode .service-point li {
    color: #ffffff;
}

body.dark-mode .service-card {
    background-color: #021F57;
    border: 1px solid #043391;
}

body.dark-mode .service-title span {
    color: #ffffff;
}

/* Portfolio */
body.dark-mode .portofolio-section {
    background-color: #2c2c2c;
}

.portofolio-item-header button {
    color: #333;
}

body.dark-mode .portofolio-item-header button{
    color: #ffffff;
}

body.dark-mode .portofolio-item-header button.active{
    color: #0101AF;
}

body.dark-mode .portofolio-title,
body.dark-mode .portofolio-title-card {
    color: #ffffff;
}

body.dark-mode .portofolio-title span {
    color: #0101AF;
}

body.dark-mode .tab-button {
    background-color: #333;
    color: #fff;
}

body.dark-mode .tab-button.active {
    background-color: #0101AF;
    color: #fff;
}

body.dark-mode .portofolio-card {
    background-color: #2e2e2e;
    border-radius: 8px;
    padding: 8px;
}

/* Pricing */
body.dark-mode .price-section {
    background-color: #2c2c2c !important;
}

body.dark-mode .price-brand-identity-card {
    background-color: #021F57;
}

body.dark-mode .price-brand-identity-card {
    border: 1px solid #043391;
}

body.dark-mode .price-title {
    color: #ffffff;
}

body.dark-mode .price-title span {
    color: #ffffff;
}

body.dark-mode .price-card h4,
body.dark-mode .price-card-pricefix
{
    color: #ffffff;
}

body.dark-mode .price-brand-identity-title{
    color: #ffffff;
}

body.dark-mode .price-brand-identity-pricefix,
body.dark-mode .price-year
{
    color: #ffffff;
}

body.dark-mode .price-card p {
    color: #cccccc;
}

body.dark-mode .price-tab-button {
    background-color: #333;
    color: #ffffff;
    border: 1px solid #ffffff;
}

body.dark-mode .price-tab-button.active {
    background-color: #0101AF;
}

/* Testimonial */
body.dark-mode .testimonial-card {
    color: #ffffff;
    background-color: #032871;
    box-shadow: 0 2px 10px rgba(255,255,255,0.05);
}

body.dark-mode .testimonial-card[style*="background-color: #fff7eb"],
body.dark-mode .testimonial-card[style*="background-color: #E7F5E8"],
body.dark-mode .testimonial-card[style*="background-color: #F5F6F7"] {
    background-color: #2c2c2c !important;
}

body.dark-mode .testimonial-text {
    color: #dddddd;
}

body.dark-mode .testimonial-card .name {
    color: #ffffff;
}

/* FAQ */
body.dark-mode .faq-section {
    background-color: #2c2c2c;
}

body.dark-mode .faq-item {
    background-color: #021843;
    border: 1px solid #043391;
}

body.dark-mode .faq-item button{
    color: #ffffff;
}

/* Banner */
body.dark-mode .banner-section {
    background-color: #021843;
    border: 1px solid #043391;
}

body.dark-mode .banner-button a {
    color: #0101AF !important;
}

/* About */
body.dark-mode .about-section {
    background-color: #165EF00D;
}

/* Testimonial Section */
body.dark-mode .testimonial-section {
    background-color: #165EF00D;
}

body.dark-mode .price-card-title {
    color: #ffffff;
}

body.dark-mode .box-button-price:hover {
    background-color: #ffffff;
}

body.dark-mode .box-button-price:hover span {
    color: #0101AF;
}

.price-advance-feature{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price-advance-feature h3{
    color: #04389F;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

