﻿

@media screen and (max-width: 480px) {
    .shine {
        font-size: 0.8rem;
        display: block;
        margin-top: 10px;
        animation: shineEffect 1s infinite linear;
    }

    .logonew {
        justify-content: center;
        align-items: center;
        margin: 0;
        background: white;
        color: #fff;
        font-family: 'Arial', sans-serif;
        overflow: hidden;
    }

    .animated-text {
        font-size: .6rem;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        display: inline-block;
        animation: typing 4s steps(30, end) infinite;
        border-right: 2px solid #fff;
        color: #5c5959;
        font-family: 'Segoe UI Emoji'
    }
}

/* For larger mobile devices and small tablets (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .shine {
        font-size: 0.8rem;
        display: block;
        margin-top: 10px;
        animation: shineEffect 1s infinite linear;
    }

    .logonew {
        justify-content: center;
        align-items: center;
        margin: 0;
        background: white;
        color: #fff;
        font-family: 'Arial', sans-serif;
        overflow: hidden;
    }

    .animated-text {
        font-size: .6rem;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        display: inline-block;
        animation: typing 4s steps(30, end) infinite;
        border-right: 2px solid #fff;
        color: #5c5959;
        font-family: 'Segoe UI Emoji'
    }
}

/* For tablets and small laptops (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Styles for screens up to 768px (tablets and smaller) */
    .shine {
        font-size: 0.8rem;
        display: block;
        margin-top: 10px;
        animation: shineEffect 1s infinite linear;
    }

    .logonew {
        justify-content: center;
        align-items: center;
        margin: 0;
        background: white;
        color: #fff;
        font-family: 'Arial', sans-serif;
        overflow: hidden;
    }

    .animated-text {
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        display: inline-block;
        animation: typing 4s steps(30, end) infinite;
        border-right: 2px solid #fff;
        color: #5c5959;
        font-family: 'Segoe UI Emoji'
    }
}

/* For laptops and desktops (1025px to 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    /* Styles for screens up to 768px (tablets and smaller) */
    .shine {
        font-size: 0.8rem;
        display: block;
        margin-top: 10px;
        animation: shineEffect 1s infinite linear;
    }

    .logonew {
        justify-content: center;
        align-items: center;
        margin: 0;
        background: white;
        color: #fff;
        font-family: 'Arial', sans-serif;
        overflow: hidden;
    }

    .animated-text {
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        display: inline-block;
        animation: typing 4s steps(30, end) infinite;
        border-right: 2px solid #fff;
        color: #5c5959;
        font-family: 'Segoe UI Emoji'
    }
}

/* For large screens (greater than 1440px) */
@media screen and (min-width: 1441px) {
    .shine {
        font-size: 1rem;
        display: block;
        margin-top: 10px;
        animation: shineEffect 1s infinite linear;
    }

    .logonew {
        justify-content: center;
        align-items: center;
        margin: 0;
        background: white;
        color: #fff;
        font-family: 'Arial', sans-serif;
        overflow: hidden;
    }

    .animated-text {
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        display: inline-block;
        animation: typing 4s steps(30, end) infinite;
        border-right: 2px solid #fff;
        color: #5c5959;
        font-family: 'Segoe UI Emoji'
    }
}



@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }

    50% {
        border-color: white;
    }
}



@keyframes shineEffect {
    0% {
        color: #fff;
        text-shadow: 0 0 10px #ff0, 0 0 20px #f80;
    }

    50% {
        color: #68685c;
        text-shadow: 0 0 20px #ff0, 0 0 30px #f80;
    }

    100% {
        color: #fff;
        text-shadow: 0 0 10px #ff0, 0 0 20px #f80;
    }
}
