@font-face {
    font-family: "Urbanist";
    src: url("../font/Urbanist-Regular.woff2") format("woff2"),
        url("../font/Urbanist-Regular.woff") format("woff"),
        url("../font/Urbanist-Regular.ttf") format("truetype");
    font-weight: 400;
    display: swap;
}

@font-face {
    font-family: "Urbanist";
    src: url("../font/Urbanist-Medium.woff2") format("woff2"),
        url("../font/Urbanist-Medium.woff") format("woff"),
        url("../font/Urbanist-Medium.ttf") format("truetype");
    font-weight: 500;
    display: swap;
}

@font-face {
    font-family: "Urbanist";
    src: url("../font/Urbanist-SemiBold.woff") format("woff"),
        url("../font/Urbanist-SemiBold.woff2") format("woff2"),
        url("../font/Urbanist-SemiBold.ttf") format("truetype");
    font-weight: 600;
    display: swap;
}

@font-face {
    font-family: "Urbanist";
    src: url("../font//Urbanist-Bold.woff2") format("woff2"),
        url("../font/Urbanist-Bold.woff") format("woff"),
        url("../font/Urbanist-Bold.ttf") format("truetype");
    font-weight: 700;
    display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist";
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist";
    background-color: #fdfdfd;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1460px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
li {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt {
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
}

img {
    display: inline-block;
    max-width: 100%;
    object-fit: cover;
}

.our-products-wrapper,
.certification-wrapper,
.features-wrapper {
    padding: 48px 0;
}

/* .electric-bed-wrapper,
.beside-cabinet-wrapper,
.examination-table-wrapper,
.strecher-wrapper,
.crash-cart-wrapper,
.trolley-wrapper,
.nurshing-wrapper,
.opd-room-wrapper,
.chair-sofa-wrapper,
.hospital-door-wrapper,
.institute-furniture-wrapper,
.ot-lights-wrapper,
.ot-tables-wrapper,
.waiting-room-wrapper {
  padding: 48px 0;
}

@media only screen and (max-width: 768px) {
  .electric-bed-wrapper,
  .beside-cabinet-wrapper,
  .examination-table-wrapper,
  .strecher-wrapper,
  .crash-cart-wrapper,
  .trolley-wrapper,
  .nurshing-wrapper,
  .opd-room-wrapper,
  .chair-sofa-wrapper,
  .hospital-door-wrapper,
  .institute-furniture-wrapper,
  .ot-lights-wrapper,
  .ot-tables-wrapper,
  .waiting-room-wrapper {
    padding: 24px 0;
  }
} */

/* title design */

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 0;
}

.title-wrapper .decorate-line {
    flex: 1;
    height: 1px;
    background-color: #ededed;
}

.section-title {
    border-radius: 50px;
    display: inline-flex;
    background-color: #fff;
    box-shadow: #0000001a 0px 4px 12px;
}

.section-title h2,
.section-title h1 {
    color: #000;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    padding: 19px 27px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.section-title h2::before,
.section-title h1::before {
    content: "";
    display: flex;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    background-color: #007b8e;
}

.section-title h2::after,
.section-title h1::after {
    content: "";
    display: flex;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    background-color: #007b8e;
}

@media only screen and (max-width: 1024px) {
    .section-title h2,
    .section-title h1 {
        font-size: 22px;
        line-height: 26px;
    }
}

/* product card design */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 40px;
    padding: 20px 0 20px;
}
.products .product {
    position: relative;
}

.products .product .label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: #007b8e;
    color: #ffffff;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    z-index: 10;
}

.product .img {
    position: relative;
    padding-top: 100%;
}

.product .img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.our-products-wrapper .product .img img {
    object-fit: cover;
}

.product .product-name {
    background-color: #007b8e;
    text-align: center;
    padding: 9px 29px;
}

.product .product-name p {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    box-sizing: border-box;
    height: 76px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .product .product-name p {
        padding: 0;
        font-size: 20px;
        line-height: 24px;
        height: 48px;
    }
}

@media only screen and (max-width: 600px) {
    .product .product-name p {
        font-size: 16px;
        line-height: 21px;
        height: unset;
    }
    .products .product .label {
        font-size: 16px;
        line-height: 21px;
    }
}

@media only screen and (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
    .title-wrapper .decorate-line {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .products {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .section-title {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-title h2,
    .section-title h1 {
        font-size: 18px;
        line-height: 24px;
        padding: 16px 20px;
    }

    .our-products-wrapper,
    .certification-wrapper,
    .features-wrapper {
        padding: 24px 0;
    }
}

@media only screen and (max-width: 425px) {
    .section-title h2,
    .section-title h1 {
        font-size: 16px;
        line-height: 21px;
        gap: 12px;
    }
}

/* more-information */
.more-info-wrapper {
    padding: 48px 0 80px;
}

.more-info-wrapper .more-info {
    background-color: #f0f0f0;
    position: relative;
}

.more-info-wrapper .more-info .img-wrapper {
    position: relative;
    padding-top: 28.55%;
    width: 50%;
}

.more-info-wrapper .more-info .img-wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.more-info-wrapper .more-info .img-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        #f0f0f0 10%,
        rgba(240, 240, 240, 0) 100%
    );
}
.more-info-wrapper .more-info .cta {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    padding: 20px;
    transform: translateY(-50%);
}

.more-info-wrapper .more-info .cta h1 {
    font-size: 46px;
    line-height: 55px;
    font-weight: 600;
    color: #007b8e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
}

.more-info-wrapper .more-info .cta p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #797979;
    margin: 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
}
.more-info-wrapper .more-info .cta button {
    border: 0;
}

.more-info-wrapper .more-info .cta button a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #ffffff;
    background-color: #007b8e;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.more-info-wrapper .more-info .cta button a:hover {
    background-color: #ffffff;
    color: #007b8e;
    border: 1px solid #007b8e;
}

@media only screen and (max-width: 1024px) {
    .more-info-wrapper .more-info .img-wrapper {
        opacity: 0.4;
        padding-top: 40%;
    }
    .more-info-wrapper .more-info .cta {
        align-items: center;
        width: 100%;
        right: unset;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    .more-info-wrapper .more-info .cta h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .more-info-wrapper .more-info .cta p {
        margin: 10px 0;
    }
}

@media only screen and (max-width: 768px) {
    .more-info-wrapper .more-info .cta button a {
        padding: 10px 12px;
        font-size: 18px;
        line-height: 22px;
    }
    .more-info-wrapper .more-info .cta p {
        font-size: 16px;
        line-height: 20px;
        margin: 10px 0;
    }

    .more-info-wrapper .more-info .cta h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .more-info-wrapper .more-info .img-wrapper {
        width: 60%;
    }
}

@media only screen and (max-width: 540px) {
    .copyright-wrapper .copyright p {
        font-size: 16px;
        line-height: 19px;
    }
    .more-info-wrapper .more-info .img-wrapper {
        opacity: 1;
        width: 100%;
    }
    .more-info-wrapper .more-info .img-wrapper::after {
        background: none;
    }
    .more-info-wrapper .more-info {
        flex-direction: column;
    }
    .more-info-wrapper .more-info .cta {
        position: unset;
        transform: unset;
        padding: 30px 20px 60px;
    }

    .more-info-wrapper .more-info .cta h1 {
        font-size: 20px;
        line-height: 24px;
    }
    .more-info-wrapper .more-info .cta button {
        margin-top: 18px;
    }
}

/* Interior Furnishing */

.image-two-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.image-two-grid .image-wrapper {
    position: relative;
    padding-top: 96.43%;
    display: flex;
}

.image-two-grid .image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-one-two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 40px 0 60px;
}

.image-one-two-grid .image-wrapper {
    display: flex;
    position: relative;
}
.image-one-two-grid .image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-one-two-grid .image-wrapper:first-of-type {
    grid-column: 1 / span 2;
    padding-top: 48.381%;
}

.image-one-two-grid .image-wrapper:nth-of-type(2) {
    grid-column: 1;
    padding-top: 96.43%;
}
.image-one-two-grid .image-wrapper:nth-of-type(3) {
    grid-column: 2;
    padding-top: 96.43%;
}

@media only screen and (max-width: 768px) {
    .image-two-grid {
        gap: 10px;
    }
    .image-one-two-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .image-one-two-grid .image-wrapper:first-of-type {
        grid-column: 1;
        padding-top: 60%;
    }

    .image-one-two-grid .image-wrapper:nth-of-type(2),
    .image-one-two-grid .image-wrapper:nth-of-type(3) {
        grid-column: 1;
        padding-top: 60%;
    }
}
@media only screen and (max-width: 480px) {
    .image-two-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.image-banner {
    padding: 20px 0 0;
}

.image-banner .image-wrapper {
    position: relative;
    padding-top: 51.13%;
}

.image-banner .image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.no-product-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.no-product-found {
    text-align: center;
}

.no-product-found p {
    font-size: 28px;
    font-weight: 600;
    color: #374151; /* dark gray */
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .no-product-found p {
        font-size: 20px;
    }
}
