/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 17 2025 | 17:24:32 */
.persona-slider-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto ;
    }

    .persona-slider {
        position: relative;
        width: 320px;
        height: 550px;
        cursor: pointer;
        transform-style: preserve-3d;
        --mouse-x: 0;
        --mouse-y: 0;
        --tilt-angle: 25deg;
        --card-translate-amount: 20px;
        transform: 
            scale(0.8)
            translateY(calc(var(--mouse-y) * var(--card-translate-amount)))
            translateX(calc(var(--mouse-x) * var(--card-translate-amount))) !important;
    }
  	
      @media screen and (min-width: 980px) and (max-width: 1300px) {
      .persona-slider {
        transform: scale(0.6);
      }
    }
  
    @media screen and (max-width: 979px) {
        .persona-slider {
            transform: scale(0.8) !important;
        }
        
        .persona-slider-wrapper {
            height: 350px !important;
        }
    }
  
   @media screen and (max-width: 480px) {
    .persona-slider-wrapper {
        width: 100%;
        height: 350px !important;
    }
    .persona-slider {
        transform: scale(0.46) !important;
      }
  }
    
    .persona-slide { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        transform-style: preserve-3d; 
        opacity: 0; 
        pointer-events: none;
        transform: rotateY(90deg);
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1); 
    }

    .persona-slide.is-active { 
        opacity: 1; 
        pointer-events: auto; 
        transform: rotateY(0deg); 
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .persona-slide.is-leaving { 
        opacity: 0; 
        pointer-events: none; 
        transform: rotateY(-90deg);
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1); 
    }

    .card-body {
        width: 100%; 
        height: 100%; 
        position: relative; 
        border-radius: 25px;
        background: #d3c7b3;
        box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
        transform-style: preserve-3d;
        transform: rotateY(calc(var(--mouse-x) * var(--tilt-angle))) rotateX(calc(var(--mouse-y) * var(--tilt-angle) * -1));
        background-size: cover;
        background-position: center;
    }

    .floating-widget {
        position: absolute;
        will-change: transform;
        filter: drop-shadow(0px 15px 15px rgba(0,0,0,0.25));
        opacity: 0;
        transition: opacity 0.4s ease-out;
        pointer-events: none; 
    }
    
    .accessory-widget {
        top: 30px; 
        right: -150px; 
        width: 200px;
        transform: translateZ(-90px); 
    }
    
    .showcase-widget {
        width: 350px; 
        bottom: -100px; 
        left: -150px;
        transform: translateZ(50px);
    }

    .showcase-widget img {
        border-radius: 25px;
        display: block;
        width: 100%;
    }
    
    .persona-slide.is-active .floating-widget {
        opacity: 1;
    }

    .persona-slide.is-active .accessory-widget { 
        transition-delay: 0.2s;
    }
    .persona-slide.is-active .showcase-widget { 
        transition-delay: 0.25s;
    }
    .persona-slide.is-active .username-badge {
        opacity: 1;
        pointer-events: auto;
    }

    .priya-showcase { bottom: -50px !important; left: -120px !important; width: 250px !important; }
    .afiq-showcase { bottom: -60px !important; left: -100px !important; width: 200px !important; }
    .michael-showcase { width: 260px !important; bottom: -20px !important; left: -120px !important; }
    .darren-showcase { width: 260px !important; bottom: -40px !important; left: -120px !important; }

    .username-badge {
        position: absolute;
       	left: -100px;
      	top: 30px;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        text-shadow: 0 1px 3px rgba(0,0,0,0.15);
        transform: translateZ(40px);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.4s ease-out, transform 0.2s ease-out, background-color 0.2s ease-out;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .username-badge:hover {
        transform: translateZ(40px) scale(1.05);
        background-color: rgba(255, 255, 255, 0.35);
    }