/* ==========================================
   Rajasthan Awas Yojana
   Coming Soon
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#0B2E74;
    --secondary:#D49A1F;
    --white:#ffffff;
    --text:#555555;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

    overflow-x:hidden;

    color:#222;

    background:
        radial-gradient(circle at top right,#ffe9a7 0%,transparent 35%),
        radial-gradient(circle at bottom left,#dbe8ff 0%,transparent 35%),
        linear-gradient(135deg,#ffffff,#eef4ff);

}

/* Background Circles */

body::before{

content:"";

position:fixed;

width:500px;

height:500px;

background:rgba(212,154,31,.18);

border-radius:50%;

top:-220px;

right:-220px;

filter:blur(20px);

z-index:-1;

}

body::after{

content:"";

position:fixed;

width:420px;

height:420px;

background:rgba(11,46,116,.08);

border-radius:50%;

bottom:-180px;

left:-180px;

filter:blur(20px);

z-index:-1;

}

/* Card */

.container{

width:100%;

max-width:760px;

background:rgba(255,255,255,.95);

backdrop-filter:blur(15px);

border-radius:28px;

padding:60px 45px;

text-align:center;

box-shadow:0 20px 60px rgba(0,0,0,.08);

border:1px solid rgba(255,255,255,.7);

}

/* Logo */

.logo{

width:180px;

display:block;

margin:0 auto 25px;

animation:floatLogo 5s ease-in-out infinite;

}

@keyframes floatLogo{

0%{transform:translateY(0);}
50%{transform:translateY(-8px);}
100%{transform:translateY(0);}

}

/* Badge */

.badge{

display:inline-block;

padding:10px 24px;

border-radius:50px;

background:#fff4d8;

color:var(--secondary);

font-weight:600;

font-size:14px;

margin-bottom:22px;

}

/* Heading */

h1{

font-size:52px;

font-weight:800;

color:var(--primary);

margin-bottom:10px;

line-height:1.2;

}

h2{

font-size:28px;

color:var(--secondary);

margin-bottom:20px;

font-weight:600;

}

p{

font-size:17px;

line-height:1.9;

color:var(--text);

max-width:600px;

margin:auto;

}

/* Countdown */

.timer{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

margin:45px 0;

}

.time-box{

background:linear-gradient(180deg,#123f96,#0B2E74);

padding:20px;

border-radius:18px;

color:#fff;

transition:.3s;

box-shadow:0 15px 25px rgba(11,46,116,.18);

}

.time-box:hover{

transform:translateY(-5px);

}

.time-box h3{

font-size:40px;

font-weight:700;

}

.time-box span{

font-size:14px;

display:block;

margin-top:8px;

letter-spacing:1px;

text-transform:uppercase;

opacity:.9;

}

/* Subscribe */

.subscribe{

margin-top:10px;

display:flex;

justify-content:center;

gap:15px;

align-items:center;

}

.subscribe input{

width:100%;

max-width:380px;

padding:17px 20px;

border-radius:50px;

border:1px solid #ddd;

font-size:15px;

outline:none;

transition:.3s;

}

.subscribe input:focus{

border-color:var(--primary);

box-shadow:0 0 0 4px rgba(11,46,116,.08);

}

.subscribe button{

padding:17px 35px;

border:none;

border-radius:50px;

background:linear-gradient(135deg,#D49A1F,#B87D08);

color:#fff;

font-size:15px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.subscribe button:hover{

background:var(--primary);

transform:translateY(-3px);

}

/* Footer */

.footer{

margin-top:45px;

padding-top:25px;

border-top:1px solid #eee;

}

.footer h3{

font-size:24px;

color:var(--primary);

margin-bottom:10px;

}

.footer p{

font-size:15px;

}

.social{

display:flex;

justify-content:center;

gap:18px;

margin-top:25px;

}

.social a{

width:46px;

height:46px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#f3f5fa;

color:var(--primary);

font-size:18px;

text-decoration:none;

transition:.3s;

}

.social a:hover{

background:var(--primary);

color:#fff;

transform:translateY(-5px);

}

/* Responsive */

@media(max-width:768px){

body{

padding:18px;

}

.container{

padding:40px 25px;

}

.logo{

width:145px;

}

h1{

font-size:36px;

}

h2{

font-size:22px;

}

p{

font-size:15px;

line-height:1.7;

}

.timer{

grid-template-columns:repeat(2,1fr);

gap:14px;

}

.time-box h3{

font-size:30px;

}

.subscribe{

flex-direction:column;

}

.subscribe input{

max-width:100%;

}

.subscribe button{

width:100%;

}

}

@media(max-width:480px){

.container{

padding:30px 18px;

border-radius:20px;

}

.logo{

width:120px;

}

h1{

font-size:30px;

}

h2{

font-size:20px;

}

.timer{

grid-template-columns:repeat(2,1fr);

gap:10px;

}

.time-box{

padding:15px 10px;

}

.time-box h3{

font-size:26px;

}

.time-box span{

font-size:12px;

}

.footer h3{

font-size:20px;

}

.social a{

width:42px;

height:42px;

}

}