.our-products {
    margin-inline: 100px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.our-products-content {
    /* width: 50%; */
}

.our-products-content h3 {
    font-weight: 700;
    font-size: 25px;
    color: #000000;
    margin-bottom: 20px;
}

.our-products-content p {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
}

.our-products-list {
    /* list-style: none; */
    padding: 0;
    margin: 0;
}

.our-products-list li {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}

.our-products iframe {
    width: 100%;
    height: 300px;
}

@media (max-width:768px) {
    .our-products {
        margin-inline: 20px;
        text-align: center;
    }

    .our-products-list li {
        font-size: 14px;
        text-align: start;
    }

    .our-products-content h3 {
        font-size: 20px;
    }

    .our-products-content p {
        font-size: 14px;
    }

    .our-products iframe {
        height: 200px;
    }
}



.work-section {
    margin-inline: 100px;
    margin-top: 50px;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
}

.work-section h3 {

    font-weight: 700;
    font-size: 30px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}
.work-section .card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--card);
    border-radius: 18px;
    min-height: 250px;
    margin-bottom: 20px;
    padding: 26px 26px 34px;
    text-align: end;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    color: black;
    transition: transform .25s ease, box-shadow .25s ease;
}

.work-section .card:focus-within,
.work-section .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(7, 11, 25, .25);
}

.work-section .work-title {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .2px;
    margin: 0 0 14px;
    color: black
}

.work-section .work-desc {
    font-size: 15px;
    line-height: 1.6;
    color: black;
    max-width: 32ch;
    margin: 0 0 26px;
    text-align: end !important;
}

.work-section .work-link {
    position: relative;
    /* display: inline-flex; */
    gap: 8px;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--link);
    text-decoration: none
}

.work-section .work-link:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: currentColor;
    transform: scaleX(.25);
    transform-origin: left;
    transition: transform .25s ease
}

.work-section .work-link:hover:after {
    transform: scaleX(1)
}

/* Decorative corner blob */
.work-section .work-blob {
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border-radius: 46% 54% 64% 36%/48% 34% 66% 52%;
    background: radial-gradient(120px 120px at 40% 40%, #532494 0%, #532494 55%, #532494 100%);
    opacity: .9;
    filter: saturate(120%);
    z-index: -1;
}

/* Icon badge */
.work-section .work-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(2, 6, 23, .25);
    outline: 6px solid #f1f5f9;
    /* light ring */
}

.work-section .work-icon {
    width: 34px;
    height: 34px;
}

.work-section .work-icon path {
    fill: #1e40af
}

/* Dark page header to match screenshot vibe */
.work-section .work-title {

    font-weight: 700;
    letter-spacing: .3px;
    font-size: 22px;
    margin: 0 0 18px
}

.work-section .work-desc {

    margin: 0 0 26px
}

@media (max-width:768px) {
    .work-section {
        margin-inline: 20px;
    }
    .work-section h3{
        font-size: 20px;
    }
    .work-section .card{
        min-height: 200px;
    }
    .work-section .work-title{
        font-size: 18px;
    }
}