 /* Carousel Item Styling */
    .slide-item {
        height: 600px;
        background-size: 110%;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        transition: background-position 0.1s ease-out;
        cursor: crosshair;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .content-wrapper {
        position: relative;
        z-index: 2;
        max-width: 800px;
        text-align: center;
        padding: 20px;
        animation: fadeIn 1s ease-in-out;
    }

    .content-wrapper h1 {
        font-size: 2.5rem;
        color: #ffffff;
    }

    .content-wrapper p {
        color: #ffffff;
        font-size: 1.1rem;
    }

    .content-wrapper .btn {
        margin: 5px;
    }

    /* Fade In Animation */
    @keyframes fadeIn {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }
/*dfldfdfhjdklfhdkfhdkfdkjsfgdkjfgdfjgdhfj*/
.takadiri-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.takadiri-content {
    width: 55%;
}
h5 {
    color: #2c9c81;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}
.takadiri-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.takadiri-btn {
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    background: #fff;
    border: 1px solid #ccc;
    transition: 0.3s;
}
.takadiri-btn.active {
    background: #f6b80e;
    color: #000;
    border: none;
}
p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}
.takadiri-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.takadiri-features {
    margin: 0;
    padding: 0;
    list-style: none;
}
.takadiri-features li {
    margin-bottom: 12px;
    font-size: 16px;
}
.takadiri-features li::before {
    content: "✔ ";
    color: #2c9c81;
    font-weight: bold;
}
.takadiri-chart-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.takadiri-pie {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(#2c9c81 0% 30%, #f0f0f0 30% 100%);
}
.takadiri-profit-text {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
}
.takadiri-image {
    width: 40%;
}
.takadiri-image img {
    width: 100%;
    border-radius: 12px;
}
