/*=========================================
 Annapurna Industries
 Premium Coming Soon V2
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
}

:root{

    --primary:#f8a31a;
    --secondary:#25D366;
    --white:#ffffff;
    --text:#d9d9d9;
    --glass:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.12);

}

body{

    font-family:'Poppins',sans-serif;

    background:url('bg.jpg') center center no-repeat;

    background-size:cover;

    background-attachment:fixed;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    overflow:hidden;

    position:relative;

    color:var(--white);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(5,15,35,.88),
        rgba(10,30,60,.70)
    );

}

.container{

    position:relative;

    z-index:5;

    width:92%;

    max-width:760px;

    padding:35px 45px;

    text-align:center;

    background:var(--glass);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid var(--border);

    border-radius:25px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.45);

}

.logo{

    width:110px;

    margin-bottom:10px;

}

.coming-badge{

    display:inline-block;

    padding:8px 22px;

    border-radius:50px;

    background:var(--primary);

    color:#111;

    font-weight:600;

    font-size:14px;

    margin-bottom:18px;

}

h1{

    font-size:52px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:10px;

}

h3{

    color:var(--primary);

    font-size:20px;

    font-weight:500;

    margin-bottom:20px;

}

.description{

    width:90%;

    margin:auto;

    color:var(--text);

    line-height:1.8;

    font-size:16px;

}

.countdown{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:16px;

    margin:35px 0;

}

.time-box{

    width:95px;

    height:95px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.time-box:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:0 10px 30px rgba(248,163,26,.25);

}

.time-box span{

    font-size:36px;

    font-weight:700;

}

.time-box small{

    margin-top:8px;

    color:#ddd;

    font-size:13px;

}

/*=========================================
 Buttons
=========================================*/

.buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.call-btn,
.whatsapp-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 35px;

    min-width:180px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.call-btn{

    background:linear-gradient(135deg,#f8a31a,#ffbf47);

    color:#111;

}

.call-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(248,163,26,.40);

}

.whatsapp-btn{

    background:linear-gradient(135deg,#25D366,#1cb85b);

    color:#fff;

}

.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(37,211,102,.40);

}

.call-btn i,
.whatsapp-btn i{

    font-size:18px;

}

/*=========================================
 Contact
=========================================*/

.contact{

    margin-top:12px;

}

.contact p{

    margin:6px 0;
    font-size:16px;
    color:var(--text);
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

}

.contact i{
    color:var(--primary);
    width:20px;
}

/*=========================================
 Footer
=========================================*/

.footer{

    position:absolute;

    left:0;

    right:0;

    bottom:18px;

    text-align:center;

    color:#cfcfcf;

    font-size:13px;

    z-index:20;

}

/*=========================================
  Premium Animation
=========================================*/

.container{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.logo{
    animation:floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

/*=========================================
  Premium Glow
=========================================*/

.container:hover{
    box-shadow:
        0 25px 70px rgba(0,0,0,.45),
        0 0 40px rgba(248,163,26,.20);
}

.time-box{
    position:relative;
    overflow:hidden;
}

.time-box::before{
    content:"";
    position:absolute;
    top:-100%;
    left:-100%;
    width:200%;
    height:200%;
    background:linear-gradient(
        135deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );
    transform:rotate(45deg);
    transition:.6s;
}

.time-box:hover::before{
    top:100%;
    left:100%;
}

/*=========================================
  Smooth Transition
=========================================*/

a,
button,
.time-box,
.container{
    transition:all .35s ease;
}

/*=========================================
  Responsive
=========================================*/

@media (max-width:768px){

body{
    overflow:auto;
    padding:20px 0;
}

.container{
    width:94%;
    padding:28px 20px;
}

.logo{
    width:90px;
}

.coming-badge{
    font-size:12px;
    padding:7px 18px;
}

h1{
    font-size:34px;
}

h3{
    font-size:17px;
}

.description{
    width:100%;
    font-size:14px;
    line-height:1.7;
}

.countdown{
    gap:10px;
}

.time-box{
    width:72px;
    height:72px;
}

.time-box span{
    font-size:24px;
}

.time-box small{
    font-size:11px;
}

.buttons{
    flex-direction:column;
    gap:12px;
}

.call-btn,
.whatsapp-btn{
    width:100%;
    min-width:100%;
}

.contact p{
    font-size:14px;
}

.footer{
    position:static;
    margin-top:25px;
    font-size:12px;
}

}

/*=========================================
  Large Screen
=========================================*/

@media (min-width:1400px){

.container{
    max-width:820px;
}

h1{
    font-size:58px;
}

.description{
    font-size:17px;
}

.time-box{
    width:100px;
    height:100px;
}

.time-box span{
    font-size:38px;
}

}