@import url('/components/assets/css/default.css');
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0px;
    background-color: #F6F6F6;
}

.container-custom {
    margin: 0 auto;
}

header {
    text-align: center;
    color: white;
    padding: 10px 0;
    background-image: url('/components/assets/img/1. Miyawaki Project_Bannerimages.png');
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    align-items: center;
    align-content: center;
    /* flex-wrap: nowrap; */
    background: #fff;
    gap: 60px;
    padding: 60px;
    padding-left: 0px;
    padding-top: 0px;
}

.left-section {
    flex: 1.5;
    background-color: #00695c;
    color: white;
    width: 650px;
    text-align: center;
    background-image: url('components/assets/img/corporate/handsup.jpg');
    background-size: cover;
    background-repeat: space;
    height: 900px;
    display: flex;
    align-items: center;
}

.left-section h2 {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 61px;
}

.left-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.right-section {
    flex: 2;
    background-color: white;
    padding: 20px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 60px;
    width: 30vw;
}

/* Benefit Card */
.benefit {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated in */
.benefit.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover effect */
.benefit:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

/* Icon (number circle) */
.benefit .icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   /* box-shadow: 0 4px 10px rgba(0,0,0,0.15);*/
}

/* Headings */
.benefit .text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

/* Paragraphs */
.benefit .text p {
    color: #374151;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Custom List Style */
.benefit ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.benefit li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s ease;
}

/* Custom bullet */
.benefit li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #34d399, #059669);
    border-radius: 50%;
   /* box-shadow: 0 0 6px rgba(5,150,105,0.6);*/
}

/* List item animation (stagger) */
.benefit.show li {
    opacity: 1;
    transform: translateX(0);
}

.benefit.show li:nth-child(1) { transition-delay: 0.1s; }
.benefit.show li:nth-child(2) { transition-delay: 0.2s; }
.benefit.show li:nth-child(3) { transition-delay: 0.3s; }
.benefit.show li:nth-child(4) { transition-delay: 0.4s; }
.benefit.show li:nth-child(5) { transition-delay: 0.5s; }
.benefit.show li:nth-child(6) { transition-delay: 0.6s; }



.icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: #00AB86;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin-right: 20px;
}

.text {
    flex: 1;
}

.text h3 {
    margin-top: 0;
}

.text p {
    margin: 5px 0 0;
}

.container1 {
    text-align: center;
    padding: 50px;
}
.salient-feature {
    background-image: url("/components/assets/img/3.Miyawaki Projectpage.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media (max-width: 768px) {

    .content {
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
        padding: 20px;
    }

    .right-section {
        display: block;
        width: 100%;
    }

    .left-section {
        width: 95vw;
        height: auto;

    }

    .left-section h2 {
        font-size: 32px;
        line-height: 48px;
    }

    header {
        padding: 20px;
    }
}

.greenoverlay1 {
    width: 100%;
    background: #0C4521CC;
    height: 100%;
    display: flex;
    align-items: center;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.partner {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.partner img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.engagement-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #2e7d32;
    background-image: url('/components/assets/img/4..Miyawaki Projectpage.png');
    background-size: cover;
    color: #fff;
}

.greenoverlay {
    width: 100%;
    background: #0C4521CC;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px;

}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.cta-button {
    background-color: #ffeb3b;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #fdd835;
}

@media (max-width: 768px) {
    .engagement-section {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        min-width: 90%;
    }

    .image-content {
        width: min-content;
    }

    .cta-button {
        margin-top: 20px;
    }

    .partners {
        flex-direction: column;
    }

    .container1 h1 {
        font-size: 32px;
        line-height: 48px;
    }

    .greenoverlay {
        flex-direction: column;
        text-align: center;
        padding: 0px;
    }
}

/* On mobile: stack vertically */
@media (max-width: 768px) {
    .benefit {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefit .icon {
        margin-bottom: 12px;
    }

    .benefit .text {
        text-align: center;
    }
}

/* Base hidden state for animations */
.salient-feature-dynamic .row > .col-lg-5 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.2s ease-in-out;
}

/* When visible */
.salient-feature-dynamic .row > .col-lg-5.visible {
    opacity: 1;
    transform: translateY(0);
}

