* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.product-section {
    background: linear-gradient(90deg, #F0F0F0 35%, #FFFFFF 30%);
    background-size: 100% 200%;
}

.product-section h2 {
    font-size: 32px;
    font-weight: bold;
}

.floating-broucher {
    position: fixed;
    right: -100px;
    /* Start off-screen to the right */
    bottom: 40px;
    /* Distance from bottom */
    transition: right 0.5s ease;
    z-index: 1000;
}

.floating-broucher img {
    width: 80px;
    filter: drop-shadow(5px 5px 5px #a3a3a3);
}

.floating-broucher.show {
    right: 20px;
    /* Slides in to visible position */
}

/* @media(max-width:1024px){
    .floating-broucher.show{
        right: 30px;
    }
} */



.circle-container {
    position: relative;
    background: white;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.circle-container img {
    max-width: 60%;
    max-height: 60%;
    margin: 0 auto;
}

.marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ED7068 ;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.marker.active {
    background: #c4242c;
}

.marker:nth-child(2) {
    top: 10%;
    left: 81%;
}

.marker:nth-child(3) {
    top: 44%;
    left: 95%;
}

.marker:nth-child(4) {
    top: 74%;
    left: 87%;
}

.content {
    text-align: left;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.content h3 {
    color: #333;
    /*font-size: 26px;*/
}

.content p {
    color: #555;
}

.content a {
    color: #C32230;
    text-decoration: underline;
    cursor: pointer;
}

.content a:hover {
    text-decoration: underline;
}

/* Hidden and visible classes */
.hidden {
    display: none;
}

.visible {
    display: block;
}

@media (max-width: 1280px) {
    .product-section {
        background: none
    }
}

@media (max-width: 768px) {
    .product-section {
        background: none
    }

    .circle-container {
        width: 300px;
        height: 300px;
    }

    .marker {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .marker:nth-child(2) {
        top: 12%;
        left: 72%;
    }

    .marker:nth-child(3) {
        top: 42%;
        left: 89%;
    }

    .marker:nth-child(4) {
        top: 70%;
        left: 80%;
    }
}

@media (max-width: 480px) {
    .circle-container {
        width: 240px;
        height: 240px;
    }

    .marker {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .marker:nth-child(2) {
        top: 14%;
        left: 68%;
    }

    .marker:nth-child(3) {
        top: 44%;
        left: 84%;
    }

    .marker:nth-child(4) {
        top: 68%;
        left: 75%;
    }
}

.content {
    text-align: left;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.content p {
    color: #555;
}

.content a {
    color: #C32230;
    text-decoration: underline;
    cursor: pointer;
}

.content a:hover {
    text-decoration: underline;
}

.device-content {
    height: auto;
    padding: 40px 0;
}

.device-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
}

 li {
    font-size: 18px;
    /* font-weight: 500; */
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

.device-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-wrapper {
    position: relative;
    display: inline-block;
    width: 70%;
    max-width: 450px;
    height: 350px;
}

.bg-overlay {
    position: absolute;
    top: 10%;
    left: 36%;
    width: 80%;
    height: 100%;
    background: url('../images/products/Medion_website_productpage_asset1-01.png') no-repeat center center;
    background-size: cover;
    z-index: 0;
    transform: translate(-50%, -50%) scale(0.9);
    border-radius: 12px;
}
.roll-in-blurred-right {
    animation: roll-in-blurred-right 2s both;
}

@keyframes roll-in-blurred-right {
    0% {
      transform: translateX(1000px) rotate(720deg);
      filter: blur(50px);
      opacity: 0;
    }
    100% {
      transform: translateX(0) rotate(0deg);
      filter: blur(0);
      opacity: 1;
    }
  }
  

.img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.smart-rapid-img {
    margin: 0 auto;
}

.video-container {
    /* max-width: 600px; */
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

/* Heading */
.video-container h2 {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
}

.video-container p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    font-weight: 500;
    color: #555;
}

/* Video */
.video-element {
    width: 80%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-section h2{
        font-size: 25px;
    }
    .content h4{
        font-size: 20px;
    }
    .content p{
        font-size: 13px;
    }
    .device-content h2{
        font-size: 25px;
    }
    .video-container {
        max-width: 100%;
    }
    .video-container p{
        font-size: 15px;
    }

    .video-container h2 {
        font-size: 25px;
    }

    .bg-overlay {
        top: 0%;
        height: 70%;
    }

     li {
        font-size: 13px;
    }
}

.third-section {
    height: auto;
}

.third-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.third-section p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #555;
}

.device-image {
    width: 100%;
    max-width: clamp(250px, 80vw, 500px);
    margin: 0 auto;
    padding: 1rem;
}

.device-image .image-wrapper {
    width: 100%;
}

.device-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: clamp(200px, 50vh, 400px);
    display: block;
    margin: 0 auto;
}

.fourth-section {
    height: auto;
}

.fourth-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.fourth-section p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.fourth-device-image {
    width: 100%;
    max-width: clamp(250px, 80vw, 500px);
    margin: 0 auto;
    padding: 1rem;
}

.fourth-device-image .fourth-image-wrapper {
    width: 100%;
}

.fourth-device-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: clamp(200px, 50vh, 400px);
    display: block;
    margin: 0 auto;
}

.related-products {
    padding: 20px;
}

.related-products h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.product {
    padding: 0 10px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-cont {
    width: 100%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: auto;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .third-section h2{
        font-size: 25px;
    }
    .third-section p{
        font-size: 15px;
    }
    .fourth-section h2{
        font-size: 25px;
    }
    .fourth-section p{
        font-size: 15px;
    }
    .related-products h2 {
        font-size: 25px;
    }

    .title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 10px;
    }

    .product-img-cont {
        max-width: 200px;
    }
}

.product-cta {
    background: linear-gradient(45deg, #F5F9FA, #DBE5EA);
    padding: 100px 0
}

.product-cta p {
    font-size: 38px;
    font-weight: 500;
    color: #000
}
@media (max-width: 768px){
    .product-cta p {
        font-size: 20px;
    }
}
.cta-arrow {
    font-size: 36px;
    border: 2px solid #c92f37;
    border-radius: 50%;
    padding: 13px;
    cursor: pointer;
    color: #000;
}

.cta-arrow:hover {
    color: #c92f37
}


/* From Uiverse.io by 0x-Sarthak */
.cta {
    position: relative;
    margin: auto;
    padding: 11.5px 18px;
    transition: all 0.2s ease;
    border: 3px solid #c4242c;
    border-radius: 50px;
    background: #c4242c;
    cursor: pointer;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    border-radius: 50px;
    background: white;
    width: 50px;
    height: 50px;
    transition: all 0.8s ease;
}

.cta span {
    position: relative;
    font-family: Montserrat;
    font-size: 18px;
    color: white;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #000;
    stroke-width: 2;
    transform: translateX(2px);
    transition: all 0.5s ease;
}

.cta:hover:before {
    width: 100%;
    height: 100%;
    background: #1c1c1c;
}

.cta:hover svg {
    transform: translateX(0);
    transition: all 2s ease;
    stroke: #fff;
}

.cta:active {
    transform: scale(0.95);
    transition: all 2s ease;
}


/* download Broucher */
/* From Uiverse.io by satyamchaudharydev */
.button-broucher {
    --width: 100px;
    --height: 60px;
    --tooltip-height: 35px;
    --tooltip-width: 90px;
    --gap-between-tooltip-to-button: 18px;
    --button-color: #000;
    --tooltip-color: #fff;
    width: var(--width);
    height: var(--height);
    background: var(--button-color);
    position: relative;
    text-align: center;
    border-radius: 15px;
    font-family: "Arial";
    transition: background 0.3s;
}


.text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-wrapper,
.text,
.icon-broucher {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
}

.text {
    top: 0
}

.text,
.icon-broucher {
    transition: top 0.5s;
}

.icon-broucher {
    color: #fff;
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-broucher svg {
    width: 24px;
    height: 24px;
}

.button-broucher:hover {
    background: #c4242c;
}

.button-broucher:hover .text {
    top: -100%;
}

.button-broucher:hover .icon-broucher {
    top: 0;
}

.button-broucher:hover:before,
.button-broucher:hover:after {
    opacity: 1;
    visibility: visible;
}

.button-broucher:hover:after {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.button-broucher:hover:before {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}


/* animation */
.puff-in-center {
    animation: puff-in-center 2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-4-11 12:16:15
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation puff-in-center
 * ----------------------------------------
 */
 @keyframes puff-in-center {
    0% {
      transform: scale(2);
      filter: blur(4px);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      filter: blur(0px);
      opacity: 1;
    }
  }

  html, body {
    overflow-x: hidden;
}
