*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;
background:#f8fbfc;
overflow-x:hidden;
color:#16313a;
position:relative;
min-height:100vh;

}

.coming-soon{

padding:60px 20px;
display:flex;
align-items:center;
justify-content:center;
min-height:100vh;

}

.container{

max-width:1200px;
width:100%;
text-align:center;
position:relative;
z-index:2;

}

.logo-area img{

max-width:260px;
margin-bottom:40px;

}

.badge{

display:inline-block;
padding:10px 24px;
background:#ffffff;
border:1px solid rgba(0,184,200,.15);
border-radius:50px;
font-size:14px;
font-weight:600;
color:#00a9bb;
box-shadow:0 10px 30px rgba(0,0,0,.04);
margin-bottom:25px;

}

.hero-content h1{

font-size:68px;
line-height:1.1;
font-weight:800;
margin-bottom:25px;
color:#0d3640;

}

.description{

max-width:850px;
margin:auto;
font-size:19px;
line-height:1.9;
color:#5c7078;
margin-bottom:40px;

}

.cta-buttons{

display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:60px;

}

.btn-primary{

background:#00b8c8;
color:#fff;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.4s;

}

.btn-primary:hover{

background:#008f9b;
transform:translateY(-3px);

}

.btn-secondary{

background:#f4b400;
color:#fff;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.4s;

}

.btn-secondary:hover{

background:#d89d00;
transform:translateY(-3px);

}

.business-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-bottom:50px;

}

.business-card{

background:rgba(255,255,255,.75);
backdrop-filter:blur(15px);
padding:35px 20px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.05);
transition:.4s;

}

.business-card:hover{

transform:translateY(-10px);

}

.business-card .icon{

font-size:42px;
margin-bottom:15px;
color:#00b8c8;

}

.business-card h3{

font-size:20px;
font-weight:600;

}

.launch-card{

background:#fff;
padding:45px;
border-radius:24px;
box-shadow:0 20px 50px rgba(0,0,0,.05);
margin-bottom:40px;

}

.launch-card h2{

font-size:32px;
margin-bottom:15px;
color:#0d3640;

}

.launch-card p{

font-size:17px;
line-height:1.8;
color:#647881;

}

.contact-card{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:50px;

}

.contact-item{

background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.04);

}

.contact-item h4{

font-size:20px;
margin-bottom:10px;
color:#00a8ba;

}

.contact-item p{

line-height:1.8;
color:#5f7077;

}

.footer-tagline{

font-size:20px;
font-weight:600;
color:#0d3640;
padding-bottom:20px;

}

.bg-shape{

position:absolute;
border-radius:50%;
filter:blur(80px);
opacity:.18;

}

.shape-1{

width:350px;
height:350px;
background:#00b8c8;
top:-100px;
left:-100px;
animation:float 10s infinite ease-in-out;

}

.shape-2{

width:400px;
height:400px;
background:#f4b400;
bottom:-100px;
right:-100px;
animation:float 12s infinite ease-in-out;

}

.shape-3{

width:250px;
height:250px;
background:#008f9b;
top:40%;
left:70%;
animation:float 14s infinite ease-in-out;

}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-40px);
}

}

@media(max-width:991px){

.hero-content h1{

font-size:50px;

}

.business-grid{

grid-template-columns:repeat(2,1fr);

}

.contact-card{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:38px;

}

.description{

font-size:16px;

}

.business-grid{

grid-template-columns:1fr;

}

.logo-area img{

max-width:220px;

}

}