/* 
    Created on : Jul 2, 2025, 7:16:15 AM
    Author     : Basuki
*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 58px;
}
.logoColor{
    color: #0D3858;
}
body {
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}
ul, ol{
    padding-left: 2px;
}
ul li, ol li{
    list-style: none
}
ul li, ol li, p, a, i, span, table th, table td{
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}
:root {
    --white: white;
    --gray: #999;
    --lightgray: whitesmoke;
    --popular: #ffdd40;
    --basic: #248C46;
    --professional: #00AEEF;
    --enterprise: #f73859;
}
@media(max-width: 992px){
    h1{
        font-size: 26px
    }
    h2{
        font-size: 22px
    }
    h3{
        font-size: 18px
    }
    h4{
        font-size: 16px
    }
    h5{
        font-size: 14px
    }
    ul li, ol li, p, a, i{
        font-size: 13px;
        line-height: 1.5;
    }
}

/*Navbar*/
.omniNav{
}
.omniNav .navbar-brand, .omniNav .nav-link {
    font-family: 'Rajdhani', sans-serif;
}
.omniNav .navbar-brand img{
    width: 100px;
}
.omniNav .nav-link {
    font-weight: 700;
    padding: 10px 15px!important;
    font-size: 16px;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler i{
    font-size: 30px!important
}
@media(max-width: 992px){
    .omniNav .navbar-brand img{
        width: 80px;
    }
    .omniNav .nav-link {
        padding: 10px 0!important;
    }
}

/*SECTION*/
section {
    padding: 50px 0;
}
.sectionTitle{
    text-align: center;
    margin-bottom: 40px
}
.sectionTitle h2{
    margin-bottom: 0
}
.sectionTitle p{
    font-size: 16px;
    color: #666
}
@media(max-width: 992px){
    .sectionTitle p{
        font-size: 14px;
    }
}

/*Carousel*/
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
header#home {
    height: 100vh;
}
.omniSlide .carousel-caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 350px 250px 0;
}
.omniSlide .carousel-caption p{
    color: #DDD;
}
@media(max-width: 992px){
    .omniSlide .carousel-caption {
        padding: 350px 10px;
    }
    .omniSlide .carousel-caption h1{
        font-size: 24px
    }
    .omniSlide .carousel-caption p{
        font-size: 13px;
        line-height: 1.3;
    }
    .omniSlide .carousel-control-next, .omniSlide .carousel-control-prev {
        top: auto;
        bottom: 70px;
    }
}

/*About*/
.about{
}
.about img{
    margin-bottom: 20px;
}
.highlightText {
    background: #e7f1ff;
    border-left: 5px solid #0d6efd;
    padding: 15px 20px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #0d6efd;
    border-radius: 5px;
}
@media(max-width: 992px){
    .highlightText {
        padding: 15px 20px;
        margin-bottom: 20px;
    }
}

/*Benefit*/
.benefit-item {
    align-items: flex-start;
    margin-bottom: 30px;
}
.benefit-item i {
    font-size: 35px;
    opacity: 0.6;
    margin-top: 5px;
    width: 40px;
    margin-right: 15px;
    color: var(--basic);
}
.benefit-item h5 {
    margin: 0;
}
.benefit-item p {
    margin: 0;
    color: #555;
}
@media(max-width: 992px){
    .benefit-item i {
        font-size: 30px;
        margin-top: 0;
        width: 40px;
        margin-right: 10px;
    }
}

/*Feature*/
.feature{
}
.featureItem{
    margin-bottom: 30px
}
.featureItem:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}
.featureItem i{
    font-size: 35px;
    opacity: 0.8;
    margin-bottom: 15px;
    color: var(--professional);
}

/*Pricing*/
.table-wrapper {
    background: var(--white);
    overflow-x: auto;
}
table {
    position: relative;
    text-align: center;
    width: 100%;
}
table thead {
    background: var(--white);
    transition: box-shadow 0.2s;
}
table tr {
    display: flex;
}
table tbody tr:hover {
    background: var(--lightgray);
}
table th{
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700
}
table th,
table td {
    width: 20%;
    min-width: 140px;
}
table th:nth-child(1),
table td:nth-child(1) {
    width: 40%;
    min-width: 250px;
}
table th:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-size: 1rem;
    line-height: 1.3;
    padding: 0 20px;
}
table th .heading {
    font-size: 18px;
    padding: 10px 20px;
    color: var(--white);
}
table th:nth-child(1) h2{
    color: #000;
}
table th:nth-child(1) h2, table th:nth-child(1) p{
    margin: 0;
}
table th:nth-child(2) .heading {
    background: var(--basic);
}
table th:nth-child(3) .heading {
    background: var(--professional);
}
table th:nth-child(4) .heading {
    background: var(--enterprise);
}
table th .info {
    position: relative;
    padding: 20px 0 0;
    border-left: 1px solid var(--lightgray);
}
table th .popular {
    position: absolute;
    top: 5px;
    right: 1px;
    font-size: 11px;
    background: var(--popular);
    padding: 3px 8px 2px;
    border-radius: 5px;
    color: #000;
}
table th .amount {
    font-size: 35px;
    padding: 0;
    line-height: 1.3;
    margin: 0
}
table th .amount span {
    display: block;
    font-weight: normal;
    transform: translateY(-8px);
}
table th:nth-child(2) .amount {
    color: var(--basic);
}
table th:nth-child(3) .amount {
    color: var(--professional);
}
table th:nth-child(4) .amount {
    color: var(--enterprise);
}
table th .amount span {
    font-weight: normal;
    font-size: 12px;
}
table td {
    padding: 7px 20px;
    line-height: 1;
    vertical-align: middle
}
table td span{
    font-family: 'Rajdhani', sans-serif;
    color: #333;
    font-weight: 700;
}
table td:not(:first-child) {
    border-left: 1px solid var(--lightgray);
}
table td:first-child {
    text-align: left;
}
table td .info {
    position: relative;
    padding: 0 0 30px;
}
table td a {
    text-decoration: none;
    display: inline-block;
    border-radius: 12px;
    padding: 7px 25px;
    margin-top: 10px;
    transition: all 0.2s;
    background: var(--lightgray);
    font-weight: 500
}
table td:nth-child(2) a {
    color: var(--basic);
    border: 1px solid var(--basic);
}
table td:nth-child(2) a:hover {
    background: var(--basic);
}
table td:nth-child(3) a {
    color: var(--professional);
    border: 1px solid var(--professional);
}
table td:nth-child(3) a:hover {
    background: var(--professional);
}
table td:nth-child(4) a {
    color: var(--enterprise);
    border: 1px solid var(--enterprise);
}
table td:nth-child(4) a:hover {
    background: var(--enterprise);
}
table td a:hover {
    color: var(--white);
}
table td svg {
    width: 18px;
    height: 18px;
    margin-top: 12px;
}
table svg.not-included {
    fill: var(--gray);
}
table svg.basic {
    fill: var(--basic);
}
table svg.professional {
    fill: var(--professional);
}
table svg.enterprise {
    fill: var(--enterprise);
}
@media(max-width: 992px){
    table th,
    table td {
        width: 15%;
        min-width: 120px;
    }
    table th:nth-child(1),
    table td:nth-child(1) {
        width: 55%;
        min-width: 300px;
    }
    table th:nth-child(1) {
        padding: 10px;
    }
    table th .heading {
        font-size: 16px;
        padding: 5px 10px;
    }
    table th .info {
        padding: 20px 0 0;
    }
    table th .popular {
        top: 3px;
        font-size: 9px;
        padding: 1px 5px 0;
    }
    table th .amount {
        font-size: 22px;
    }
    table th .amount span {
        font-size: 9px
    }
    table td {
        padding: 8px 10px;
        line-height: 1;
        font-size: 12px;
    }
    table td a {
        font-size: 12px;
        border-radius: 7px;
        padding: 5px 10px 4px;
        margin-top: 10px;
    }
    table svg {
        width: 14px;
        height: 14px;
    }
}

/*WAVE*/
.wave-divider {
    position: relative;
    margin-top: -5rem;
}
.wave-divider svg {
    display: block;
    width: 100%;
}

/* Additional CTA styling */
.btn-cta {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}
.btn-cta:hover {
    background-color: #0b5ed7;
    color: white;
    text-decoration: none;
}

/* FAQ styles */
.faq h3, .faq .accordion-button {
    font-size: 16px!important;
    font-weight: 700;
}
.faq .accordion-body {
    font-size: 15px!important;
}
.faq .accordion-button:focus{
    outline: 0;
    box-shadow: none;
}
@media(max-width: 992px){
    .faq h3, .faq .accordion-button {
        font-size: 14px!important;
    }
    .accordion-button {
        font-size: 14px!important;
        padding-left: 10px;
    }
    .faq .accordion-body {
        font-size: 13px!important;
    }
}

/* Testimoni*/
.testimoni{
    padding-top: 150px!important;
    padding-bottom: 150px!important;
}
.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Responsive video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-container iframe, .video-container video {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*Contact*/
.contact{
    padding-bottom: 150px!important
}
.contactMaps{
    padding: 10px;
    border: 1px solid #CCC;
    margin-bottom: 25px
}
.contact iframe{
    width: 100%!important;
}
.contact p i{
    width: 20px;
    margin-right: 5px;
}
.contact p i{
    width: 20px;
    margin-right: 5px;
}
.contact p a{
    font-size: 14px;
    background: #EEE;
    text-decoration: none;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #DDD;
    display: inline-block
}
.contact p a:hover{
    background: #FFF;
    border-color: #CCC;
}
@media(max-width: 992px){
    .contact p{
        margin-bottom: 5px
    }
}

/*Footer*/
footer {
    background: #666;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}
footer p{
    margin: 0;
    color: #FFF
}