

.full-width-section {
    width: 100vw;
    height: auto;
    min-height: 60vh; /* or use 100vh if you want full viewport height */
    display: block;
    position: relative;
    overflow: hidden;
}

    /* Force internal images to fill section */
    .full-width-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }



body {
    position: relative;
}




.banner {
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16/6;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
background: url('/powerlockdigital/webbannersf047n.jpg') no-repeat center center/cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.label {
    position: absolute;
    left: 5%;
    top: 8%;
    font-family: sans-serif;
    font-size: 2.5vw;
    font-weight: 700;
    color: #111;
}

    .label.sub {
        top: 18%;
        font-size: 1.5vw;
        font-weight: 500;
        color: #222;
    }

/* Lock container */
.lock {
    position: absolute;
    left: 15%;
    top: 10%;
    width: 100%;
    z-index: 5;
    perspective: 1000px;
    animation: lockFloat 6s ease-in-out infinite;
    text-align: center;
}






    .lock img {
        width: 500px;
        height: auto;
        display: block;
        margin: 0 auto;
        transform-style: preserve-3d;
        animation: lockRotate 20s linear infinite, lockFloat 10s ease-in-out infinite;
    }

/* Slow 360° rotation (very premium look) */
@keyframes lockRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* Elegant float (very subtle, slower) */
@keyframes lockFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Optional shimmer effect */
.lock::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(75deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: shimmer 6s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}













/* Premium stage above icons */
.stage {
    position: absolute;
    left: 57%;
    top: 80%;
    width: 18%;
    max-width: 200px;
    height: 22px;
    background: radial-gradient(circle at center, #fff, #c0c0c0);
    border-radius: 50% / 45%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4), inset 0 3px 10px rgba(255,255,255,0.9), 0 0 12px rgba(200,0,0,0.5);
    z-index: 4;
    animation: stageGlow 3s ease-in-out infinite;
}

/* Spotlight only on lock */
.spotlight {
    position: absolute;
    left: 55%;
    top: 22%;
    width: 25%;
    height: 25%;
    background: radial-gradient(ellipse at top, rgba(255,0,0,0.35), transparent 75%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 3;
}

@keyframes stageGlow {
    0%,100% {
        box-shadow: 0 8px 18px rgba(0,0,0,0.3), 0 0 10px rgba(255,0,0,0.4), inset 0 3px 10px rgba(255,255,255,0.9)
    }

    50% {
        box-shadow: 0 10px 24px rgba(0,0,0,0.5), 0 0 18px rgba(255,0,0,0.8), inset 0 4px 12px rgba(255,255,255,1)
    }
}

@keyframes lockRotate {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

@keyframes lockFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.cta {
    position: absolute;
    right: 5%;
    bottom: 8%;
    background: #fff;
    color: #111;
    padding: 0.8em 1.5em;
    border-radius: 10px;
    font-weight: 700;
    font-family: sans-serif;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all .3s ease;
    font-size: 1em;
}

    .cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }

.icons {
    position: absolute;
    bottom: 6%;
    left: 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    z-index: 5;
}

.icon {
    width: 12vw;
    max-width: 90px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,#ffffff,#e0e0e0);
    box-shadow: 6px 6px 16px rgba(0,0,0,0.25), -6px -6px 16px rgba(255,255,255,0.6);
    animation: float 4s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: all .3s ease;
}

    .icon img {
        width: 60%;
        height: 60%;
        object-fit: contain;
    }

    .icon:hover {
        box-shadow: 0 0 22px rgba(255,0,0,0.8), inset 0 0 10px rgba(255,255,255,0.9);
        transform: scale(1.1) rotateY(20deg);
    }

    .icon:nth-child(2) {
        animation-delay: 0.4s
    }

    .icon:nth-child(3) {
        animation-delay: 0.8s
    }

    .icon:nth-child(4) {
        animation-delay: 1.2s
    }

@keyframes float {
    0% {
        transform: translateY(0) rotateY(0deg)
    }

    25% {
        transform: translateY(-10px) rotateY(15deg)
    }

    50% {
        transform: translateY(0) rotateY(0deg)
    }

    75% {
        transform: translateY(-10px) rotateY(-15deg)
    }

    100% {
        transform: translateY(0) rotateY(0deg)
    }
}

/* Responsive */
@media (max-width:1024px) {
    .label {
        font-size: 3vw;
    }

        .label.sub {
            font-size: 2vw;
        }

    .lock {
        left: 50%;
        top: 10%;
        transform: translateX(-30%);
        width: 35%;
        max-width: 300px;
    }


    .rotating-section .tpl1 {
        width: 100%;
        height: 100%;
    }

    .stage {
        top: 65%;
        left: 72%;
        transform: translateX(-50%);
        width: 20%;
        height: 16px;
    }
}

@media (max-width:768px) {
    .label {
        font-size: 5vw;
    }

        .label.sub {
            font-size: 3.5vw;
        }

    .cta {
        font-size: 0.9em;
        padding: 0.6em 1.2em;
    }

    .icons {
        gap: 12px;
    }

    .lock {
        left: 50%;
        top: 10%;
        transform: translateX(-30%);
        width: 35%;
        max-width: 300px;
    }

    .tpl1 {
        width: 100%;
        height: 100%;
    }

    .stage {
        top: 65%;
        left: 72%;
        transform: translateX(-30%);
        width: 20%;
        height: 16px;
    }

    .spotlight {
        left: 55%;
        top: 25%;
        width: 35%;
        height: 28%;
    }
}

@media (max-width:480px) {

    .label {
        top: 6%;
        font-size: 6vw;
    }

        .label.sub {
            top: 16%;
            font-size: 4.5vw;
        }

    .icons {
        justify-content: center;
        margin-left: 0;
        gap: 10px;
    }

    .icon {
        width: 44px;
        height: 44px;
    }

    .lock {
        left: 50%;
        top: 10%;
        transform: translateX(-30%);
        width: 35%;
        max-width: 300px;
    }

    .tpl1 {
        width: 100%;
        height: 100%;
    }

    .stage {
        top: 65%;
        left: 72%;
        transform: translateX(-50%);
        width: 20%;
        height: 16px;
    }

    .spotlight {
        top: 18%;
        left: 55%;
        transform: translateX(-50%);
        width: 60%;
        height: 28%;
    }
}


.container1 {
    position: relative;
    width: 100%;
    max-width: 1400px;

    border-radius: 12px;
  
}

.main-image {
    width: 100%;
    max-width: 1280px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Call screen */
.call-screen {
    position: absolute;
    top: 59%;
    left: 79.5%;
    width: 11%;
    max-width: 160px;
    transform: translate(-50%, -50%);
    border-radius: 12%;
    animation: breathe 2.5s ease-in-out infinite;
}

@keyframes breathe {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.95;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Text overlay */
.typed-container {
    position: absolute;
    bottom: 72%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: clamp(20px, 2.6vw, 34px);
    line-height: 1.4;
    max-width: 80%;
    border-radius: 12px;
    padding: 4px 20px;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
}

.line {
    display: block;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.6s ease;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.55);
}

    .line.show {
        opacity: 1;
        transform: translateY(0);
    }

.primary {
    font-weight: 700;
    color: #ffff;
    letter-spacing: 0.5px;
}

.secondary {
    font-weight: 400;
    color: #ffdd57; /* gold highlight */
    font-style: italic;
}

/* Responsiveness */
@media (max-width: 992px) {
    .call-screen {
        width: 11%;
        max-width: 120px;
        left: 79.4%;
    }

    .typed-container {
        bottom: 70%;
        font-size: clamp(18px, 3vw, 26px);
        max-width: 90%;
        left: 53%;
    }
}

@media (max-width: 768px) {
    .call-screen {
        width: 11%;
        max-width: 120px;
        left: 79.4%;
    }

    .typed-container {
        bottom: 70%;
        font-size: clamp(18px, 3vw, 26px);
        max-width: 90%;
        left: 53%;
    }
}

@media (max-width: 480px) {
    .call-screen {
        width: 11%;
        max-width: 120px;
        left: 79.4%;
    }

    .typed-container {
        bottom: 50%;
        font-size: clamp(12px, 1.5vw, 18px);
        line-height: 1.0;
        padding: 1px 2px;
        border-radius: 5px;
        max-width: 40%;
        left: 53%;
    }
}



.slider-container1 {
    position: relative;
    width: 100%;
    max-width: 1400px;
}



    .image-section img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

/* Text overlay */
.quote-overlay {
    position: absolute;
    top: 50%;
    right: 5%; /* keep always on right side */
    transform: translateY(-50%);
    max-width: 40%; /* never more than 40% width */
    color: #fff;
    text-align: right;
    overflow-wrap: break-word; /* prevent overflow */
}

.quote-item {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

    .quote-item.animate {
        animation: fadeInSlideUp 1s ease-out forwards;
    }

    .quote-item:nth-child(1).animate {
        animation-delay: 0.5s;
    }

    .quote-item:nth-child(2).animate {
        animation-delay: 1.5s;
    }

.quote-text {
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1;
    color: goldenrod;
}

.quote-author {
    font-size: 1.9em;
    font-style: italic;
    margin-top: 5px;
    color: #9B111E; /* gold accent */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Animation */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .quote-overlay {
        max-width: 50%;
        right: 4%;
    }

    .quote-text {
        font-size: 1.2em;
    }

    .quote-author {
        font-size: 1.2em;
    }
}

@media (max-width: 992px) {
    .quote-overlay {
        max-width: 55%;
        right: 3%;
        top: 55%;
    }

    .quote-text {
        font-size: 1.2em;
        line-height: 0.80;
    }

    .quote-author {
        font-size: 0.85em;
    }
}

@media (max-width: 768px) {
    .quote-overlay {
        max-width: 55%;
        right: 3%;
        top: 55%;
    }

    .quote-text {
        font-size: 1.2em;
        line-height: 0.80;
    }

    .quote-author {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .quote-overlay {
        max-width: 65%;
        right: 5%;
        top: 60%;
    }

    .quote-text {
        font-size: 0.80em;
    }

    .quote-author {
        font-size: 0.75em;
    }
}

@media (max-width: 420px) {
    .quote-overlay {
        max-width: 55%;
        right: 5%;
        top: 60%;
    }

    .quote-text {
        font-size: 0.70em;
    }

    .quote-author {
        font-size: 0.65em;
    }
}

.rotating-section {
    display: none;
}
/* Wrapper for arrows to position relative to section */
.section-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none; /* prevents blocking other content */
    z-index: 999;
}

/* Style individual arrows */
.nav-arrow {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: all; /* allow click inside wrapper */
}

    .nav-arrow:hover {
        background: #ff4444;
        transform: scale(1.1);
    }

/* Responsive sizes */
@media screen and (max-width: 768px) {
    .nav-arrow {
        font-size: 1.8rem;
        padding: 8px 12px;
    }
}

@media screen and (max-width: 480px) {
    .nav-arrow {
      display:none;
    }
}
