
body {
    padding-top: 1px;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


#app {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: white;
    color: #1F2937;
    margin: 0;
    padding: 0;
    min-height: auto;
}


.page-content, .other-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 !important;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    line-height: 0;
}

#main-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner {
    height: auto !important;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 25% !important;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0) 20%,
            rgba(0, 0, 0, 0) 80%,
            rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}


.banner-title {
    font-size: clamp(1rem, 5vw, 2.5rem);
    margin-bottom: 15px;
}


.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.banner-cta {
    text-align: center;
    margin-top: 2rem;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: absolute !important;
    overflow: hidden;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    visibility: visible !important;
    opacity: 1 !important;
    top: 25%;
    left: 50% !important;
    transform: translateX(-50%) !important;
}


.banner-button:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(-50%) translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.banner-button::before {
    display: none;
}


.banner-logo {
    position: absolute;
    top: 20%;
    left: 2%;
    z-index: 10;
    width: clamp(100px, 20vw, 500px);
    height: auto;
    max-height: none;
    opacity: 0.95;
}


.banner-subtitle {
    position: absolute;
    top: 30%;
    left: 2%;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
}


.banner-title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-size: clamp(1rem, 3vw, 2rem);
    margin: 0;
}



@media (min-width: 769px) {
    .video-container {
        height: auto;
        aspect-ratio: 16/9;
        max-height: 100vh;
    }
    .banner-button {
        padding: clamp(4px, 0.8vw, 8px) clamp(10px, 5vw, 20px);
        font-size: clamp(0.8rem, 1.2vw, 1rem);
        top: 25%;
    }
}



@media (max-width: 768px) {
    .banner-logo {
        width: clamp(100px, 22vw, 150px);
        top: 15%;
        left: 5%;
    }

    .banner-subtitle {
        font-size: clamp(1.5rem, 8vw, 3.5rem);
        line-height: 1.2;
    }
    .video-container {
        height: auto;
        aspect-ratio: 4/3;
        max-height: 80vh;
    }
    .banner {
        padding-top: 50%;
    }
    .banner-subtitle {
        font-size: clamp(1rem, 3vw, 2rem);
        top: 25%;
        left: 5%;
        line-height: 1.1;
    }

    .banner-title {
        font-size: clamp(0.9rem, 3vw, 1.5rem);
        top: 8%;
    }

    .banner-button {
        top: 60%;
        padding: clamp(2px, 1vw, 4px);
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .banner-logo {
        width: clamp(80px, 15vw, 120px);
        top: 12%;
    }
    .video-container {
        height: auto;
        aspect-ratio: 3/2;
        max-height: 70vh;
    }
    .banner {
        padding-top: 60%;
    }
    .banner-subtitle {
        font-size: clamp(0.6rem, 3vw, 1.6rem);
        top: 22%;
    }

    .banner-title {
        font-size: clamp(0.8rem, 3vw, 1.4rem);
        top: 6%;
    }

    .banner-button {
        top: 55%;
        padding: clamp(1px, 1vw, 2px);
        font-size: 0.3rem;
    }
}






.medical-devices-container {
    background-color: #000000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: clamp(2rem, 8vw, 4rem) clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
}

.medical-devices-container .main-title {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.medical-devices-container .main-title h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.medical-devices-container .main-title p {
    color: #ccc;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
}

.medical-devices-container .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}


@media (min-width: 768px) {
    .medical-devices-container .category-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.medical-devices-container .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medical-devices-container .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.medical-devices-container .category-image {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.medical-devices-container .category-card:hover .category-image {
    transform: scale(1.05);
}

.medical-devices-container .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 2rem;
}

.medical-devices-container .category-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: clamp(3rem, 6vw, 3.5rem);
    height: clamp(3rem, 6vw, 3.5rem);
    background-color: #FC5000;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.medical-devices-container .category-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.medical-devices-container .category-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .medical-devices-container .category-title {
        font-size: 2rem;
    }
}

.medical-devices-container .category-subtitle {
    color: #eee;
    font-size: clamp(0.85rem, 2vw, 1rem);
    max-width: 90%;
}


.medical-devices-container .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 576px) {
    .medical-devices-container {
        padding: 2rem 1rem;
    }

    .medical-devices-container .category-image {
        height: 15rem;
    }

    .medical-devices-container .category-title {
        font-size: 1.25rem;
    }

    .medical-devices-container .category-subtitle {
        font-size: 0.9rem;
    }

    .medical-devices-container .category-icon {
        width: 3rem;
        height: 3rem;
    }

    .medical-devices-container .category-icon i {
        font-size: 1.5rem;
    }
}






 .page-content {
     padding-top: 1px;
 }

 .product-features {
     padding: 20px 0;
     margin-top: 0px;
     background-color: #F2F3ED;
 }
.features-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: 0 1rem;
}
.feature-item {
    flex: 0 0 320px;
    min-width: 180px;
    max-width: 320px;
}
.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    border-radius: 8px !important;
}

.feature-image:hover .item-img {
    transform: scale(1.02);
}

.feature-item:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.decor-line {
    width: 1px;
    height: 150px;
    background: #3B82F6;
    margin: 12px auto;
    transition: height 0.3s ease;
}

.feature-item:hover .decor-line {
    height: 150px;
}


.item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.5s ease;
    border-radius: 8px;
}
.decor-line {
    width: 1px;
    height: 150px;
    background: #1E1E1E;
    margin: 12px auto;
}
.feature-info {
    text-align: center;
    padding: 0 8px;
}
.feature-title {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}
.feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}
.iframe-container {
    height: 80vh;
}




@media (max-width: 768px) {
    .feature-item {
        flex: 0 0 calc(50% - (3rem / 2));
        max-width: calc(50% - (3rem / 2));
    }
}
@media (max-width: 480px) {
    .feature-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 auto;
        max-width: 350px;
        min-width: 0;
    }
}


.feature-info * {
    text-align: center !important;
}
}





@media (max-aspect-ratio: 4/3) {
    #main-video {
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9) {
    #main-video {
        width: 100%;
        height: auto;
    }
}