#navbar-placeholder {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    font-weight: 400;
}

.container {
    max-width: 1280px;
    padding-left: 1rem;
    padding-right: 1rem;
}

a:focus {
    box-shadow: none;
}

a:focus,
a:hover,
a:active {
    text-decoration: none;
    color: #2623d0;
}


.container .columns {
    margin-left: -1rem;
    margin-right: -1rem;
}

.container .column {
    padding-left: 1rem;
    padding-right: 1rem;
}

.yeo-body {
    max-width: 1280px;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}


.navbar .navbar-brand.logo {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo-img {
    margin-right: 10px;
    display: inline-block;
    height: 24px;
    flex-shrink: 0;
}

.yeo-slogan {
    background: #0a007e center;
    background-size: auto;
    padding-bottom: 3rem;
    /* Rectangle 10: */
    background-image: -webkit-linear-gradient(44deg, #0C0091 0%, #00A87E 100%);
    background-image: -o-linear-gradient(44deg, #0C0091 0%, #00A87E 100%);
    background-image: linear-gradient(134deg, #0C0091 0%, #00A87E 100%);
}

.yeo-slogan .slogan-bold {
    display: block;
}

.yeo-slogan .slogan-normal {
    display: block;
}

.yeo-slogan p {
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 200;
    opacity: 0.8;
    width: 90%;
    margin-bottom: 2rem;
}

.slogan {
    background: transparent;
    padding-top: 8rem;
    color: #fff;
    text-align: left;
    max-width: 1280px;
}

.slogan h1 {
    font-size: 3.2rem;
    font-family: 'Poppins', serif;
    font-weight: 700;
    text-shadow: 0px 5px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    max-width: 950px;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}


.slogan-img {
    max-width: 100%;
    margin-top: 25px;
}

.yeo-header {
    background: transparent;
}

.yeo-header a {
    color: #fff;
}

.slogan .slogan-bold {
    color: #00ffd4;
}


.slogan .btn-start {
    padding: .9rem 1.5rem;
    height: auto;
    background: transparent;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    border-color: rgba(255, 255, 255, .4);
    letter-spacing: 0.05rem;
}

.feature-title {
    font-weight: 200;
    font-size: 1rem;
    padding: .5rem 0 .5rem 0;
    opacity: .5;
    text-align: center;
    display: inline-block;
    border-bottom: 1px solid #bcb9b9;
    margin: 0 auto 2rem;
}

.yeo-header .navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 840px) {
    .yeo-header .navbar {
        padding: 1rem 0;
    }
}

.yeo-header .navbar-section .btn.btn-link {
    color: #fff;
    padding: .25rem 1.2rem;
    opacity: .9;
}

.yeo-header .btn-hire-me {
    background: #00bc9e;
    border-color: transparent;
    color: #ffffff;
    border-radius: 50px;
    padding: .25rem 1rem;
}

/* Mobile Navbar Styles */
.nav-toggle-input {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    margin-right: -10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #fff;
    height: 2px;
    width: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Desktop Menu */
.nav-links {
    display: flex;
    align-items: center;
}

@media (max-width: 840px) {
    .nav-toggle-label {
        display: block;
    }

    .navbar-sticky .nav-toggle-label span,
    .navbar-sticky .nav-toggle-label span::before,
    .navbar-sticky .nav-toggle-label span::after {
        background: #0C0091;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0C0091;
        flex-direction: column;
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        align-items: center;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 20px !important;
        font-size: 1.2rem;
        opacity: 0.9;
        border-bottom: none;
    }

    .nav-links .btn-primary {
        margin: 30px auto;
        width: 200px;
        text-align: center !important;
        background: #00ffd4 !important;
        color: #0C0091 !important;
    }

    .nav-toggle-input:checked~.nav-links {
        right: 0;
    }

    /* Hamburger Animation */
    .nav-toggle-input:checked+.nav-toggle-label {
        position: fixed;
        right: 1rem;
        top: 1.5rem;
    }

    .nav-toggle-input:checked+.nav-toggle-label span {
        background: transparent !important;
    }

    .nav-toggle-input:checked+.nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
        background: #00ffd4 !important;
    }

    .nav-toggle-input:checked+.nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
        background: #00ffd4 !important;
    }
}

/* Our Client*/

.yeo-client {
    background: #f4f4f4;
    padding: 2rem 0;
    text-align: center;
}

.yeo-client-title {
    text-align: center;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    font-weight: 200;
    opacity: .5;
}


.yeo-client a {
    display: inline-block;
    margin-right: 3.5rem;
}

.yeo-client a:last-child {
    margin: 0;
}

.yeo-client img {
    height: 34px;
}

/* Yeo Price */

.yeo-price {
    padding: 0 0 4rem 0;
    background: #0a007e;
}

.yeo-price .panel {
    text-align: center;
    background: #fff;
    border: none;
}

.yeo-price .panel ul {
    list-style: none;
    margin: 0 1rem;
}

.yeo-price .panel .panel-title {
    font-size: .8rem;
    font-weight: 400;
    padding: .5rem 0 0 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.yeo-price .panel p {
    margin: 0;
}

.yeo-price .panel .price {
    font-size: 2rem;
    font-weight: 700;
}

.yeo-price .btn-price {
    padding: .6rem 1rem;
    background: #1f1f23;
    color: #fff;
    height: auto;
    min-width: 220px;
    font-size: .9rem;
}

.yeo-price .panel .panel-footer {
    padding-bottom: 2rem;
}

/* Yeo Team */

.yeo-team {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 3rem 0;
    background: #f7f7f7;
}


.yeo-team .team-title {
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem 0;
}

.yeo-team .name {
    font-size: 1rem;
    font-weight: 700;
    padding: .6rem 0 .2rem 0;
    display: block;
}


.yeo-team .title {
    font-size: .8rem;
    opacity: .5;
}


.yeo-team img {
    max-width: 250px;
}

.yeo-team .s-circle {
    border-radius: 4px;
}


/* What We Do */

.yeo-do {
    padding: 3rem 0 4rem 0;
    text-align: center;
}



.yeo-do .yeo-do-content {
    padding: 0 1rem;
}

.yeo-do img {
    max-height: 60px;
}

.yeo-do h3 {
    font-size: .9rem;
    font-weight: 700;
    padding: 1rem 0 .1rem 0;
}

.yeo-do p {
    font-size: .8rem;
    font-weight: 400;
    opacity: .8;
}

.yeo-do a {
    color: #382CBE;
}



/* How We Work */

.yeo-work {
    padding: 4rem 0 1rem 0;
    background: #0a007e;
    color: #fff;
    background-size: cover;
}

.yeo-work-feature-bold {
    color: #00ffd4;
}

.yeo-work-img img {
    width: 300px;
}

.yeo-work .yeo-work-feature {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.3;
    text-align: center;
}



/* Open Source */

.yeo-open-source {
    padding: 4rem 0;
    text-align: center;
}

.open-source-feature {
    font-weight: 700;
    font-size: 3.5rem;
}

.yeo-open-source .btn-open-source {
    padding: .8rem 1.5rem;
    background: #fff;
    border-color: #ddd;
    color: #444;
    height: auto;
}


.yeo-footer {
    background: #0a007e;
    color: #fff;
    padding: 3rem 0;
}

.yeo-footer h4 {
    font-size: 1rem;
    color: #fff;
}

.yeo-footer .nav .nav-item a {
    padding: .3rem 0rem;
    color: #fff;
    opacity: 0.8;
    font-weight: 200;
}



@media (max-width: 600px) {

    .slogan {
        padding-top: 6rem;
        /* Give room for navbar */
    }

    .slogan h1 {
        font-size: 2.2rem;
        /* Adjusted for better visibility */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .yeo-slogan {
        padding-bottom: 4rem;
    }

    .yeo-slogan p {
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .yeo-do {
        padding: 1rem 0 2rem 0;
    }

    .yeo-do .yeo-do-content {
        padding-right: 0;
        padding-bottom: 1.5rem;
        text-align: center;
        border-bottom: 1px solid #ddd;
        margin-bottom: 1.5rem;
    }

    .yeo-client a {
        margin: 10px 15px;
    }

    .yeo-price .panel {
        text-align: center;
        background: #fff;
        margin-bottom: 1rem;
    }

    .yeo-do h3 {
        font-size: 1rem;
        font-weight: 700;
        padding: 1rem 0 .1rem 0;
    }

    .yeo-work {
        padding: 2rem 0;
        text-align: center;
    }

    .yeo-work .yeo-work-feature {
        font-size: 2rem;
    }

    .yeo-open-source {
        padding: 2rem 0;
    }

    .open-source-feature {
        font-size: 2rem;
    }

    .yeo-client img {
        height: 30px;
    }

    .yeo-footer {
        padding: 2rem 0;
    }

    .yeo-footer-content {
        padding-bottom: 1rem;
    }

    .yeo-footer h4 {
        font-size: 1rem;
        color: #fff;
        margin-bottom: 0;
    }

    .feature-title {
        font-weight: 200;
        font-size: 1rem;
        padding: 1rem 0 1rem 0;
        opacity: .5;
    }

    .yeo-team {
        padding: 1rem 0;
    }

    .yeo-price {
        padding: 0 0 2rem 0;
    }

    .yeo-team .title {
        font-size: .8rem;
        opacity: .5;
        padding-bottom: 2rem;
        display: block;
    }

    .yeo-price .btn-price {
        padding: .6rem .5rem;
        background: #382CBE;
        color: #fff;
        height: auto;
        width: 90%;
        font-size: .8rem;
    }

}

.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.navbar-sticky .navbar-brand.logo,
.navbar-sticky .btn-link {
    color: #0C0091 !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Blog Page Styles */
.blog-hero {
    background-image: linear-gradient(134deg, #0C0091 0%, #00A87E 100%);
    padding: 120px 0 60px;
    color: #fff;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-container {
    padding: 60px 0;
    background: #fdfdfd;
}

.home-blog-posts {
    padding: 3rem 0;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: left;
    height: 100%;
    display: grid;
    grid-template-rows: 280px 1fr;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 280px !important;
    min-height: 280px !important;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 1rem;
    flex-grow: 1;
}

.blog-card-tag {
    background: #00bc9e;
    color: #fff;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f9f9f9;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 8px;
}

.author-name {
    font-size: 0.7rem;
    font-weight: 700;
}

.blog-date {
    font-size: 0.7rem;
    color: #aaa;
}

/* Single Post Styles */
.post-header {
    background-image: linear-gradient(134deg, #0C0091 0%, #00A87E 100%);
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
}

.post-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.post-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.post-content {
    background: #fff;
    max-width: 800px;
    margin: -40px auto 100px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    z-index: 5;
    padding: 60px;
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #2E2E2E;
}

.post-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 40px;
}

.back-to-blog {
    margin-top: 40px;
    display: inline-block;
    color: #0C0091;
    font-weight: 700;
    text-decoration: none;
}

.back-to-blog:hover {
    text-decoration: underline;
}

/* Modern Professional Footer */
.yeo-footer {
    background: #0C0091;
    /* Kembalikan ke warna identitas (Biru) */
    color: #fff;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 10px;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
}

.yeo-footer h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #00bc9e;
    /* Warna aksen Teal */
}

.yeo-footer .nav .nav-item a {
    color: #fff !important;
    opacity: 0.7;
    padding: 5px 0;
    font-size: 0.9rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yeo-footer .nav .nav-item a:hover {
    opacity: 1;
    color: #00bc9e !important;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 600px) {
    .yeo-footer {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .yeo-footer h4 {
        margin-top: 40px;
    }
}