/**************************HEADER STYLES**************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #ffffff;
}

/********************************NAVBAR STYLES********************************/
.navbar-nav {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c0c0c0;
}

.navbar-nav .nav-link {
    background: transparent;
    border-radius: 50px;
    padding: 8px 24px;
    margin: 0;
    transition: background 0.2s, color 0.2s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background: #85A8F8;
    color: #fff !important;
}

.nav-link.active {
  color: #0d3b66 !important; /* biru tua */
  font-weight: bold;
}

/*********************************HEADER STYLES*********************************/
.header {
    background-color: #7faaff;
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 50px;
    margin-bottom: 50px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.header h2 {
    margin-bottom: 5px;
    font-weight: bold;
}

.header p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #000000;
}


/*********************************CONTENT STYLES*********************************/
/* .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 10%;
    margin-left: 18%;
}

.text-section {
    flex: 1;
    max-width: 55%;
}

.text-section h3 {
    margin-bottom: 40px;
    margin-top: 20px;
    font-size: 1.7rem;
    color: #000;
    font-weight: bold;
}

.text-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}

.inari-header-img {
    display: block;
    margin-top: -7%;
    position: relative;
    z-index: 2;
    width: 27%;
    position: absolute;
    right: 13%;
    border-radius: 5%;
} */
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 10%;
    margin-left: 18%;
}

.text-section {
    flex: 1;
    max-width: 55%;
}

.text-section h3 {
    margin-bottom: 40px;
    margin-top: 20px;
    font-size: 1.7rem;
    color: #000;
    font-weight: bold;
}

.text-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}

.inari-header-img {
    display: block;
    margin-top: -7%;
    position: absolute;
    z-index: 2;
    width: 27%;
    right: 13%;
    border-radius: 5%;
}

/* Tablet & Desktop Kecil (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .content {
        margin-left: 10%;
        margin-right: 5%;
        padding-bottom: 15%;
    }

    .text-section {
        max-width: 60%;
    }

    .text-section h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .text-section p {
        font-size: 1.1rem;
    }

    .inari-header-img {
        width: 32%;
        right: 8%;
        margin-top: -5%;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media screen and (max-width: 768px) {
    .content {
        margin-left: 5%;
        margin-right: 5%;
        padding-bottom: 20%;
        flex-direction: column;
    }

    .text-section {
        max-width: 100%;
        padding-right: 0;
    }

    .text-section h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
        margin-top: 30%;
    }

    .text-section p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .inari-header-img {
        position: relative;
        width: 50%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        margin-bottom: 20px;
    }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .content {
        margin-left: 4%;
        margin-right: 4%;
        padding-bottom: 25%;
    }

    .text-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        margin-top: 25%;
        text-align: center;
    }

    .text-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: justify;
    }

    .inari-header-img {
        width: 65%;
        margin-bottom: 25px;
        border-radius: 8%;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media screen and (max-width: 360px) {
    .content {
        margin-left: 3%;
        margin-right: 3%;
    }

    .text-section h3 {
        font-size: 1.2rem;
        margin-top: 20%;
    }

    .text-section p {
        font-size: 0.9rem;
    }

    .inari-header-img {
        width: 75%;
    }
}
/*********************************VISI MISI STYLES*********************************/
.tab.tab-box {
    background: #e6eeff;
    border-radius: 50px;
    padding: 6px 8px;
    display: inline-flex;
    gap: 0;
    margin-bottom: 24px;
    margin-left: 60%;
    margin-right: 0;
    box-shadow: 0 2px 8px rgba(51,102,255,0.06);
    justify-content: flex-end;
    min-width: 220px;
    max-width: 320px;
}

.tab-btn {
    border: none;
    background: transparent;
    color: #3366ff;
    padding: 10px 36px;
    min-width: 110px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
}

.tab-btn.active,
.tab-btn:focus,
.tab-btn:hover {
    background: #3366ff;
    color: #fff;
}

.misi-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.misi-list li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 2em; 
}

.misi-list li i.fa-circle-check {
    color: #fff;
    margin-right: 10px;
    font-size: 1.15em;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 2px;
}

.visi-misi-container {
    margin-bottom: 5%;
}

.visi-text ul li i.fa-circle-check {
    color: #ffffff;          
    margin-right: 20px;    
    font-size: 1.5em;      
    vertical-align: middle;
}

.visi-text#misiCard {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visi-overlap-wrapper {
    position: relative;
    width: 80%;
    max-width: 1200px;
    min-height: 400px;
    margin: 0 auto 60px auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.visi-overlap-img {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    height: auto;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.visi-content {
    position: relative;
    z-index: 1;
    margin-left: 2%;
    width: 200%;
    display: flex;
    align-items: center;
}

.visi-text {
    background-color: #3366ff;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(51, 102, 255, 0.08);
    width: 100%;
    padding-left: 40%;
}

/* Desktop Kecil & Tablet Landscape (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .tab.tab-box {
        margin-left: 50%;
        min-width: 200px;
        max-width: 280px;
    }

    .tab-btn {
        padding: 8px 28px;
        min-width: 100px;
        font-size: 0.95rem;
    }

    .visi-overlap-wrapper {
        width: 90%;
        min-height: 350px;
    }

    .visi-overlap-img {
        width: 35%;
        left: 5%;
    }

    .visi-text {
        font-size: 1rem;
        padding: 25px;
        padding-left: 42%;
    }

    .visi-text#misiCard {
        min-height: 280px;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media screen and (max-width: 768px) {
    .tab.tab-box {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        width: fit-content;
        max-width: 100%;
    }

    .tab-btn {
        padding: 10px 24px;
        min-width: 90px;
        font-size: 0.9rem;
    }

    .visi-misi-container {
        margin-bottom: 8%;
    }

    .visi-overlap-wrapper {
        flex-direction: column;
        min-height: unset;
        align-items: stretch;
        width: 90%;
        margin-bottom: 40px;
    }

    .visi-overlap-img {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .visi-content {
        margin-left: 0;
        width: 100%;
    }

    .visi-text {
        padding: 25px;
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .visi-text#misiCard {
        min-height: auto;
        padding: 30px 25px;
    }

    .misi-list li {
        margin-bottom: 10px;
        padding-left: 2.2em;
    }

    .misi-list li i.fa-circle-check {
        font-size: 1.2em;
    }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .tab.tab-box {
        padding: 5px 6px;
        min-width: 180px;
        max-width: 260px;
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 8px 20px;
        min-width: 80px;
        font-size: 0.85rem;
    }

    .visi-overlap-wrapper {
        width: 95%;
        margin-bottom: 30px;
    }

    .visi-overlap-img {
        max-width: 100%;
        margin-bottom: 16px;
        border-radius: 8px;
    }

    .visi-text {
        padding: 20px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .visi-text#misiCard {
        padding: 25px 20px;
    }

    .misi-list li {
        margin-bottom: 12px;
        padding-left: 2em;
        font-size: 0.9rem;
    }

    .misi-list li i.fa-circle-check {
        font-size: 1.1em;
        top: 1px;
    }

    .visi-text ul li i.fa-circle-check {
        font-size: 1.3em;
        margin-right: 15px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media screen and (max-width: 360px) {
    .tab.tab-box {
        min-width: 160px;
        max-width: 240px;
    }

    .tab-btn {
        padding: 7px 16px;
        min-width: 70px;
        font-size: 0.8rem;
    }

    .visi-text {
        padding: 18px;
        font-size: 0.85rem;
    }

    .visi-text#misiCard {
        padding: 22px 18px;
    }

    .misi-list li {
        font-size: 0.85rem;
        padding-left: 1.8em;
    }
}
