/*==============================================================
    PREMIUM DECORATIVE MESSAGE FRAME
==============================================================*/

.premium-message-section {

    width: 100%;

    min-height: 420px;

    padding: 70px 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #123f91 0%,
            #071c4c 45%,
            #020b22 100%
        );
}


/*==============================================================
    BACKGROUND LIGHT
==============================================================*/

.premium-message-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(47, 84, 235, 0.28),
            transparent 65%
        );

    filter: blur(20px);

    pointer-events: none;
}


/*==============================================================
    MAIN FRAME
==============================================================*/

.premium-message-frame {

    width: min(1050px, 100%);

    min-height: 350px;

    padding: 75px 85px 65px;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.97),
            rgba(235,243,255,0.96)
        );

    border: 2px solid rgba(100,170,255,0.95);

    box-shadow:

        0 0 10px rgba(64,150,255,0.9),

        0 0 25px rgba(47,84,235,0.8),

        0 0 55px rgba(47,84,235,0.55),

        0 25px 70px rgba(0,0,0,0.45);

    transform-origin: center;

    animation:
        frameFloat 5s ease-in-out infinite,
        frameGlow 3s ease-in-out infinite;

    overflow: hidden;

    z-index: 2;
}


/*==============================================================
    OUTER FRAME
==============================================================*/

.premium-message-frame::before {

    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 27px;

    border: 1px solid rgba(47,84,235,0.55);

    box-shadow:
        inset 0 0 15px rgba(47,84,235,0.15);

    pointer-events: none;

}


/*==============================================================
    INNER FRAME
==============================================================*/

.premium-message-frame::after {

    content: "";

    position: absolute;

    inset: 20px;

    border-radius: 20px;

    border: 1px solid rgba(47,84,235,0.22);

    pointer-events: none;

}


/*==============================================================
    GLOWING FRAME LAYER
==============================================================*/

.frame-glow {

    position: absolute;

    inset: -4px;

    border-radius: 36px;

    border: 2px solid transparent;

    background:
        linear-gradient(
            90deg,
            transparent,
            #2f54eb,
            #70dfff,
            #2f54eb,
            transparent
        )
        border-box;

    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    mask-composite: exclude;

    animation:
        borderLight 4s linear infinite;

    pointer-events: none;

}


/*==============================================================
    ANIMATED FRAME FLOAT
==============================================================*/

@keyframes frameFloat {

    0% {

        transform:
            translateY(0px)
            rotateX(0deg)
            rotateZ(0deg);

    }

    25% {

        transform:
            translateY(-5px)
            rotateX(0.5deg)
            rotateZ(-0.15deg);

    }

    50% {

        transform:
            translateY(0px)
            rotateX(0deg)
            rotateZ(0.15deg);

    }

    75% {

        transform:
            translateY(5px)
            rotateX(-0.5deg)
            rotateZ(-0.15deg);

    }

    100% {

        transform:
            translateY(0px)
            rotateX(0deg)
            rotateZ(0deg);

    }

}


/*==============================================================
    GLOW PULSE
==============================================================*/

@keyframes frameGlow {

    0% {

        box-shadow:

            0 0 8px rgba(64,150,255,0.8),

            0 0 20px rgba(47,84,235,0.55),

            0 0 45px rgba(47,84,235,0.35),

            0 25px 70px rgba(0,0,0,0.4);

    }

    50% {

        box-shadow:

            0 0 15px rgba(80,190,255,1),

            0 0 35px rgba(47,84,235,0.85),

            0 0 70px rgba(47,84,235,0.65),

            0 25px 70px rgba(0,0,0,0.4);

    }

    100% {

        box-shadow:

            0 0 8px rgba(64,150,255,0.8),

            0 0 20px rgba(47,84,235,0.55),

            0 0 45px rgba(47,84,235,0.35),

            0 25px 70px rgba(0,0,0,0.4);

    }

}


/*==============================================================
    MOVING BORDER LIGHT
==============================================================*/

@keyframes borderLight {

    0% {

        transform: translateX(-100%);

        opacity: 0.4;

    }

    50% {

        opacity: 1;

    }

    100% {

        transform: translateX(100%);

        opacity: 0.4;

    }

}


/*==============================================================
    TOP ORNAMENT
==============================================================*/

.top-ornament {

    width: 70%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    position: relative;

    z-index: 5;

    margin-bottom: 30px;

}


/*==============================================================
    ORNAMENT LINES
==============================================================*/

.ornament-line {

    height: 2px;

    flex: 1;

    max-width: 220px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #2f54eb,
            #69dfff,
            transparent
        );

    box-shadow:
        0 0 8px rgba(47,84,235,0.7);

}


/*==============================================================
    CENTER ICON
==============================================================*/

.message-icon {

    width: 76px;

    height: 76px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at 35% 30%,
            #5b9cff,
            #174bd6 60%,
            #062a91
        );

    border: 2px solid #ffffff;

    box-shadow:

        0 0 8px #ffffff,

        0 0 20px #42dfff,

        0 0 40px rgba(47,84,235,0.9);

    animation:
        iconPulse 2.5s ease-in-out infinite;

}


.message-icon span {

    font-size: 34px;

    color: white;

    text-shadow:

        0 0 8px white,

        0 0 15px #7beaff;

    animation:
        iconRotate 5s linear infinite;

}


/*==============================================================
    ICON PULSE
==============================================================*/

@keyframes iconPulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.07);

    }

}


/*==============================================================
    ICON ROTATION
==============================================================*/

@keyframes iconRotate {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}


/*==============================================================
    MESSAGE CONTENT
==============================================================*/

.message-content {

    position: relative;

    z-index: 5;

    max-width: 850px;

    text-align: center;

}


/*==============================================================
    PARAGRAPH
==============================================================*/

.message-content p {

    margin: 0;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 20px;

    line-height: 1.9;

    letter-spacing: 0.15px;

    color: #0b2860;

    text-shadow:
        0 1px 1px rgba(255,255,255,0.8);

}


/*==============================================================
    VBlink TEXT
==============================================================*/

.message-content strong {

    color: #2455e8;

    font-weight: 700;

    text-shadow:

        0 0 8px rgba(47,84,235,0.15);

}


/*==============================================================
    BOTTOM ORNAMENT
==============================================================*/

.bottom-ornament {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 300px;

    margin-top: 30px;

    position: relative;

    z-index: 5;

}


.bottom-ornament span {

    height: 1px;

    flex: 1;

    background:
        linear-gradient(
            90deg,
            transparent,
            #2f54eb
        );

}


.bottom-ornament span:last-child {

    background:
        linear-gradient(
            90deg,
            #2f54eb,
            transparent
        );

}


.bottom-ornament i {

    font-style: normal;

    font-size: 18px;

    color: #2f54eb;

    text-shadow:

        0 0 7px #5b8cff,

        0 0 15px rgba(47,84,235,0.8);

    animation:
        ornamentPulse 2s ease-in-out infinite;

}


/*==============================================================
    ORNAMENT PULSE
==============================================================*/

@keyframes ornamentPulse {

    0%,
    100% {

        transform: scale(1);

        opacity: 0.7;

    }

    50% {

        transform: scale(1.4);

        opacity: 1;

    }

}


/*====================================================================
    VBlink LOGO CORNERS
====================================================================*/

.logo-corner {

    position: absolute;

    width: 62px;
    height: 62px;

    display: flex;

    justify-content: center;
    align-items: center;

    z-index: 20;

    pointer-events: none;

    animation:
        logoCornerFloat 4s ease-in-out infinite;

}


/*====================================================================
    LOGO IMAGE
====================================================================*/

.logo-corner img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    filter:

        drop-shadow(
            0 0 3px
            rgba(255,255,255,0.95)
        )

        drop-shadow(
            0 0 8px
            rgba(47,84,235,0.9)
        )

        drop-shadow(
            0 0 18px
            rgba(50,170,255,0.65)
        );

    opacity: 0.95;

    transition:
        transform 0.4s ease,
        filter 0.4s ease,
        opacity 0.4s ease;

}


/*====================================================================
    TOP LEFT
====================================================================*/

.logo-corner-tl {

    top: 25px;
    left: 25px;

}


/*====================================================================
    TOP RIGHT
====================================================================*/

.logo-corner-tr {

    top: 25px;
    right: 25px;

}


/*====================================================================
    BOTTOM LEFT
====================================================================*/

.logo-corner-bl {

    bottom: 25px;
    left: 25px;

}


/*====================================================================
    BOTTOM RIGHT
====================================================================*/

.logo-corner-br {

    bottom: 25px;
    right: 25px;

}


/*====================================================================
    LOGO CORNER FLOAT
====================================================================*/

@keyframes logoCornerFloat {

    0%,
    100% {

        transform:
            translateY(0)
            scale(1);

        opacity: 0.85;

    }

    50% {

        transform:
            translateY(-3px)
            scale(1.04);

        opacity: 1;

    }

}

/*====================================================================
    GLOWING LOGO HALO
====================================================================*/

.logo-corner::before {

    content: "";

    position: absolute;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border:
        1px solid
        rgba(47,84,235,0.45);

    box-shadow:

        0 0 5px
        rgba(47,84,235,0.5),

        0 0 15px
        rgba(47,84,235,0.35),

        inset 0 0 10px
        rgba(47,84,235,0.15);

    animation:
        logoHalo 2.8s ease-in-out infinite;

}


/*====================================================================
    HALO ANIMATION
====================================================================*/

@keyframes logoHalo {

    0%,
    100% {

        transform: scale(0.9);

        opacity: 0.35;

    }

    50% {

        transform: scale(1.15);

        opacity: 0.85;

    }

}

/*====================================================================
    ROTATING LIGHT RING
====================================================================*/

.logo-corner::after {

    content: "";

    position: absolute;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    border:

        1px solid
        transparent;

    background:

        linear-gradient(
            90deg,
            transparent,
            #43dfff,
            transparent
        ) border-box;

    -webkit-mask:

        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask:

        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    mask-composite: exclude;

    animation:
        logoRingRotate 3.5s linear infinite;

}


/*====================================================================
    ROTATING RING
====================================================================*/

@keyframes logoRingRotate {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}

/*==============================================================
    LIGHT PARTICLES
==============================================================*/

.light-particle {

    position: absolute;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:

        0 0 5px #ffffff,

        0 0 12px #44dfff,

        0 0 22px #2f54eb;

    z-index: 6;

}


/* Particle positions */

.particle-1 {

    top: 30px;
    left: 12%;

    animation:
        particleMove1 4s ease-in-out infinite;

}


.particle-2 {

    top: 20%;
    right: 8%;

    animation:
        particleMove2 5s ease-in-out infinite;

}


.particle-3 {

    bottom: 15%;
    left: 7%;

    animation:
        particleMove3 4.5s ease-in-out infinite;

}


.particle-4 {

    bottom: 25px;
    right: 15%;

    animation:
        particleMove4 5s ease-in-out infinite;

}


.particle-5 {

    top: 50%;
    left: 3%;

    animation:
        particleMove5 3.5s ease-in-out infinite;

}


.particle-6 {

    top: 50%;
    right: 3%;

    animation:
        particleMove6 4s ease-in-out infinite;

}


/*==============================================================
    PARTICLE ANIMATIONS
==============================================================*/

@keyframes particleMove1 {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(0.7);

        opacity: 0.3;

    }

    50% {

        transform:
            translate(40px,20px)
            scale(1.5);

        opacity: 1;

    }

}


@keyframes particleMove2 {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(0.5);

        opacity: 0.3;

    }

    50% {

        transform:
            translate(-30px,35px)
            scale(1.4);

        opacity: 1;

    }

}


@keyframes particleMove3 {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(0.6);

        opacity: 0.4;

    }

    50% {

        transform:
            translate(35px,-30px)
            scale(1.5);

        opacity: 1;

    }

}


@keyframes particleMove4 {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(0.5);

        opacity: 0.3;

    }

    50% {

        transform:
            translate(-45px,-25px)
            scale(1.5);

        opacity: 1;

    }

}


@keyframes particleMove5 {

    0%,
    100% {

        transform:
            translateY(0)
            scale(0.5);

        opacity: 0.2;

    }

    50% {

        transform:
            translateY(-40px)
            scale(1.4);

        opacity: 1;

    }

}


@keyframes particleMove6 {

    0%,
    100% {

        transform:
            translateY(0)
            scale(0.5);

        opacity: 0.2;

    }

    50% {

        transform:
            translateY(40px)
            scale(1.4);

        opacity: 1;

    }

}


/*==============================================================
    MOBILE RESPONSIVE
==============================================================*/

@media (max-width: 768px) {

    .premium-message-section {

        padding: 45px 15px;

    }


    .premium-message-frame {

        padding:
            65px
            30px
            50px;

        min-height: auto;

        border-radius: 25px;

    }


    .top-ornament {

        width: 90%;

        gap: 10px;

        margin-bottom: 25px;

    }


    .message-icon {

        width: 60px;

        height: 60px;

    }


    .message-icon span {

        font-size: 27px;

    }


    .message-content p {

        font-size: 15px;

        line-height: 1.8;

        text-align: center;

    }


    .bottom-ornament {

        width: 200px;

        margin-top: 25px;

    }


  

}


/*==============================================================
    SMALL MOBILE
==============================================================*/

@media (max-width: 480px) {

    .premium-message-section {

        padding: 30px 10px;

    }


    .premium-message-frame {

        padding:
            55px
            20px
            40px;

        border-radius: 20px;

    }


    .message-content p {

        font-size: 14px;

        line-height: 1.75;

    }


    .top-ornament {

        width: 100%;

    }


    .message-icon {

        width: 52px;

        height: 52px;

    }


    .message-icon span {

        font-size: 23px;

    }


    .ornament-line {

        max-width: 100px;

    }


    .bottom-ornament {

        width: 160px;

    }
/*====================================================================
    MOBILE LOGO CORNERS
====================================================================*/

@media (max-width: 768px) {

    .logo-corner {

        width: 48px;
        height: 48px;

    }

    .logo-corner-tl,
    .logo-corner-tr {

        top: 18px;

    }

    .logo-corner-bl,
    .logo-corner-br {

        bottom: 18px;

    }

    .logo-corner-tl,
    .logo-corner-bl {

        left: 18px;

    }

    .logo-corner-tr,
    .logo-corner-br {

        right: 18px;

    }

    .logo-corner::before {

        width: 38px;
        height: 38px;

    }

    .logo-corner::after {

        width: 43px;
        height: 43px;

    }

}




    .logo-corner {

        width: 38px;
        height: 38px;

    }

    .logo-corner-tl,
    .logo-corner-tr {

        top: 15px;

    }

    .logo-corner-bl,
    .logo-corner-br {

        bottom: 15px;

    }

    .logo-corner-tl,
    .logo-corner-bl {

        left: 15px;

    }

    .logo-corner-tr,
    .logo-corner-br {

        right: 15px;

    }

    .logo-corner::before {

        width: 31px;
        height: 31px;

    }

    .logo-corner::after {

        width: 34px;
        height: 34px;

    }


}


/*==============================================================
    REDUCE MOTION FOR ACCESSIBILITY
==============================================================*/

@media (prefers-reduced-motion: reduce) {

    .premium-message-frame,
    .frame-glow,
    .message-icon,
    .message-icon span,
    .decor-corner,
    .bottom-ornament i,
    .light-particle {

        animation: none;

    }

}