.website-maintenance-div{
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    .logo{
        height: 4rem;
        margin: 2rem 0rem;
    }
    h1{
        font-size: 3.75rem;
        line-height: 1;
        color: #005F60;
        font-weight: 700;
        margin-bottom: 1.5rem;
        @media(max-width:767px){
            font-size: 2.2rem;
        }
    }
    p{
        font-size: 1.25rem;
        line-height: 1.75rem;
        color: #333333;
        max-width: 44rem;
        margin: 0 auto;
        margin-bottom: 2rem;
        span{
            color:#e37705;
        }
        @media(max-width: 767px){
            font-size: 1rem;
            margin-bottom: 1rem;
        }
    }
    .countdown-div{
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
        @media(max-width: 767px){
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 1rem;
        }
    }
    .timer-box {
        box-shadow: 0 4px 20px rgba(0, 128, 131, 0.1);
        transition: all 0.3s ease;
        padding: 1.5rem;
        border: 2px solid #005F60;
        border-radius: 16px;
        margin: 10px 0px;
        transition: transform 0.3s ease;
        width: 150px;
        height: 130px;
        &:hover{
            box-shadow: 0 8px 30px rgba(0, 128, 131, 0.15);
            transform: translateY(-5px);
        }
        .days{
            font-size: 3rem;
            line-height: 1;
            color: #005F60;
            font-weight: 600;
            @media(max-width: 767px){
                font-size:2rem;
            }
        }
        .text-muted{
            font-size: 1rem;
            line-height: 1.5rem;
            margin-top:5px;
        }
        @media(max-width: 767px){
            margin: 2px 0px;
            height: 110px;
        }
    }
    .small{
        font-size: 1.125rem;
        line-height: 1.75rem;
        margin-bottom: 1.5rem;
        @media(max-width: 767px){
            font-size: 1rem;
        }
    }
    .btn-help{
        background-color: #e37705;
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        padding: 10px 50px;
        line-height: 30px;
        transform: translate(0px, 5px);
        transition: 0.5s;
        margin-bottom: 2rem;
        &:hover{
            transform: translate(0px, 0px);
            transition: 0.5s;
            background-color: #005f60;
        }
        @media(max-width: 767px){
            font-size: 15px;
            margin-bottom: 1rem;
        }
    }
}

.shape {
position: absolute;
z-index: -1;
}
.shape-1 {
top: 15%;
left: 10%;
width: 80px;
height: 80px;
border: 2px solid rgba(0, 128, 131, 0.2);
border-radius: 50%;
animation: float 8s infinite ease-in-out;
}
.shape-2 {
bottom: 15%;
right: 10%;
width: 120px;
height: 120px;
border: 2px solid rgba(227, 119, 5, 0.2);
border-radius: 20px;
transform: rotate(45deg);
animation: float 10s infinite ease-in-out reverse;
}
.shape-3 {
top: 60%;
left: 15%;
width: 50px;
height: 50px;
background-color: rgba(0, 128, 131, 0.05);
border-radius: 8px;
animation: float 7s infinite ease-in-out 1s;
}
.shape-4 {
top: 20%;
right: 15%;
width: 40px;
height: 40px;
background-color: rgba(227, 119, 5, 0.05);
border-radius: 8px;
animation: float 9s infinite ease-in-out 2s;
}
    @keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}