.why-product-section {
    padding: 60px 0;
    background-image: url("../image/product-why-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.why-product-section .heading {
    text-align: center;
    margin-bottom: 40px;
}

.why-product-section .heading h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.why-product-section .heading p {
    font-size: 1.2rem;
    color: #585858;
}

.why-product-section .heading p span {
    font-weight: 600;
    color: var(--black);
}

.why-product-section .why-product-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.why-product-section .why-product-wrapper .why-product-image img {
    width: 420px;
    max-width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
    top: 60px;
}

.why-product-section .why-product-wrapper .feature-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 15px 20px;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    z-index: 99;
    transition: all 0.3s ease;
}

.why-product-section .why-product-wrapper .feature-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.why-product-section .why-product-wrapper .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--black);
}

.why-product-section .why-product-wrapper .feature-card p {
    font-size: 1rem;
    margin: 5px 0 0;
    color: var(--black);
}

.why-product-section .why-product-wrapper .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-product-section .why-product-wrapper .feature-card.top-left {
    top: 15%;
    left: 12%;
    background: #e8f0ff;
}

.why-product-section .why-product-wrapper .feature-card.top-right {
    top: 23%;
    right: 14%;
    background: #e6f9f2;
}

.why-product-section .why-product-wrapper .feature-card.bottom-left {
    bottom: 0%;
    left: 10%;
    background: #f2e8ff;
}

.why-product-section .why-product-wrapper .feature-card.bottom-right {
    bottom: 10%;
    right: 10%;
    background: #fff5e6;
}

/* meet the unilog */
.meet-unilog-section {
    padding: 30px 0;
    background-image: url('../image/meet-section-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.meet-unilog-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--black);
    text-align: center;
}

.meet-unilog-section p {
    font-size: 1.2rem;
    text-align: center;
}

.meet-unilog-section .meet-unilog-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: center;
    align-items: center;
}

.meet-unilog-section .meet-unilog-wrapper .center-image img {
    width: 700px;
    max-width: 100%;
    height: auto;
}

.meet-unilog-section .meet-unilog-wrapper .card-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: -12%;
    margin-right: -15%;
}

.meet-unilog-section .meet-unilog-wrapper .card-layout .card {
    background-color: var(--white);
    backdrop-filter: blur(43.20000076293945px);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    width: 500px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.meet-unilog-section .meet-unilog-wrapper .card-layout .card i {
    font-size: 40px;
}

.meet-unilog-section .meet-unilog-wrapper .card-layout .card h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-align: left;
}

.meet-unilog-section .meet-unilog-wrapper .card-layout .card p {
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

/* images section */

.images-section {
    padding: 50px 0;
}

.images-section .images-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 10px;
}

.images-section .img-box {
    position: relative;
    overflow: hidden;
}

.images-section .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.images-section .img-box.wide {
    grid-column: span 2;
}

@media screen and (max-width: 1440px) {
    .meet-unilog-section .meet-unilog-wrapper .card-layout {
        margin-left: -15%;
        margin-right: -18%;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card {
        width: 400px;
    }
}

@media (max-width: 1024px) {
    .meet-unilog-section .meet-unilog-wrapper {
        margin-top: 30px;
    }

    .meet-unilog-section .meet-unilog-wrapper .center-image {
        display: none;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout {
        margin: 0;
        align-items: center;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card {
        width: 90%;
        max-width: 450px;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card h2 {
        font-size: 1.1rem;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .images-section {
        padding: 30px 0;
    }

    .images-section .images-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 400px;
        gap: 10px;
    }

    .images-section .img-box.wide {
        grid-column: auto;
    }

    .why-product-section .why-product-wrapper .feature-card {
        width: 220px;
        padding: 12px 15px;
    }

    .why-product-section .why-product-wrapper .feature-card h3 {
        font-size: 1.2rem;
    }

    .why-product-section .why-product-wrapper .why-product-image img {
        width: 350px;
        top: 30px;
    }
}

@media (max-width: 768px) {
    .why-product-section {
        padding: 30px 0;
    }

    .why-product-section .why-product-wrapper {
        flex-direction: column;
    }

    .why-product-section .why-product-wrapper .why-product-image {
        order: 1;
        margin-bottom: 20px;
    }

    .why-product-section .why-product-wrapper .feature-card {
        position: relative;
        width: 90%;
        max-width: 320px;
        margin: 10px auto;
    }

    .why-product-section .why-product-wrapper .feature-card.top-left,
    .why-product-section .why-product-wrapper .feature-card.top-right,
    .why-product-section .why-product-wrapper .feature-card.bottom-left,
    .why-product-section .why-product-wrapper .feature-card.bottom-right {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .why-product-section .why-product-wrapper .why-product-image img {
        width: 280px;
        top: 0;
    }

    .meet-unilog-section h2 {
        font-size: 1.6rem;
    }

    .meet-unilog-section p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card {
        width: 95%;
        max-width: 380px;
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card i {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card h2,
    .meet-unilog-section .meet-unilog-wrapper .card-layout .card p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .why-product-section .heading h2 {
        font-size: 1.6rem;
    }

    .why-product-section .heading p {
        font-size: 1rem;
    }

    .why-product-section .why-product-wrapper .feature-card {
        padding: 10px;
    }

    .why-product-section .why-product-wrapper .feature-card img {
        width: 40px;
        height: 40px;
    }

    .meet-unilog-section .meet-unilog-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card {
        width: 100%;
        max-width: 320px;
        padding: 10px 14px;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card h2 {
        font-size: 1rem;
    }

    .meet-unilog-section .meet-unilog-wrapper .card-layout .card p {
        font-size: 0.9rem;
    }
}