/*==================================================
AIOS24 DEMO CENTRE
==================================================*/

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#060B16;

    color:#fff;

    overflow-x:hidden;

    position:relative;

}

/*====================================
CONTAINER
====================================*/

.container{

    width:92%;

    max-width:1280px;

    margin:auto;

}

/*====================================
LINK
====================================*/

a{

    text-decoration:none;

    color:inherit;

}

/*====================================
BACKGROUND
====================================*/

.background-grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:40px 40px;

    z-index:-2;

    animation:gridMove 25s linear infinite;

}

@keyframes gridMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(40px);

    }

}

/*====================================
PARTICLES
====================================*/

.particles{

    position:fixed;

    inset:0;

    z-index:-1;

    background:

    radial-gradient(circle at 20% 20%,rgba(0,174,239,.18),transparent 35%),

    radial-gradient(circle at 80% 30%,rgba(0,174,239,.10),transparent 30%),

    radial-gradient(circle at 50% 80%,rgba(0,174,239,.15),transparent 35%),

    #060B16;

}

/*====================================
NAVBAR
====================================*/

.navbar{

    position:sticky;

    top:0;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(6,11,22,.75);

    border-bottom:1px solid rgba(255,255,255,.06);

}

.nav-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:78px;

}

.logo img{

    height:48px;

}

nav{

    display:flex;

    gap:28px;

}

nav a{

    color:#d6e7ff;

    font-size:15px;

    transition:.3s;

}

nav a:hover{

    color:#00AEEF;

}
/*====================================
HERO
====================================*/

.hero{

    padding:120px 0 70px;

    text-align:center;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(0,174,239,.35);

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

    border-radius:50px;

    color:#7ed8ff;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:30px;

    backdrop-filter:blur(15px);

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.hero h1 span{

    color:#00AEEF;

    text-shadow:0 0 25px rgba(0,174,239,.6);

}

.hero p{

    max-width:760px;

    margin:auto;

    color:#bfc9d8;

    font-size:18px;

    line-height:1.8;

}

/*====================================
UNDER CONSTRUCTION
====================================*/

.construction{

    padding:20px 0 80px;

}

.construction-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:60px;

    border-radius:28px;

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

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

    backdrop-filter:blur(25px);

    box-shadow:

    0 0 40px rgba(0,174,239,.08);

}

.construction-card .icon{

    width:120px;

    height:120px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,174,239,.12);

    color:#00AEEF;

    font-size:55px;

    margin-bottom:30px;

    box-shadow:

    0 0 40px rgba(0,174,239,.25);

}

.construction-card h2{

    font-size:42px;

    margin-bottom:20px;

}

.construction-card p{

    max-width:700px;

    margin:auto;

    color:#b8c4d5;

    line-height:1.9;

    font-size:17px;

}

/*====================================
PROGRESS
====================================*/

.progress{

    margin-top:40px;

}

.progress span{

    display:block;

    margin-top:12px;

    color:#7ed8ff;

    font-size:15px;

}

.progress-bar{

    width:100%;

    height:12px;

    background:#172030;

    border-radius:30px;

    overflow:hidden;

}

.progress-fill{

    width:80%;

    height:100%;

    background:linear-gradient(

        90deg,

        #00AEEF,

        #0078D4

    );

    border-radius:30px;

    animation:loading 2s ease;

}

@keyframes loading{

    from{

        width:0;

    }

    to{

        width:80%;

    }

}
/*====================================
BUTTON
====================================*/

.btn-group{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:56px;

    padding:0 28px;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.btn-primary{

    color:#fff;

    background:linear-gradient(
        135deg,
        #00AEEF,
        #0078D4
    );

    box-shadow:
    0 10px 35px rgba(0,174,239,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 45px rgba(0,174,239,.45);

}

.btn-outline{

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

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

    color:#fff;

}

.btn-outline:hover{

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

    border-color:#00AEEF;

    transform:translateY(-4px);

}

/*====================================
SECTION TITLE
====================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:15px;

}

.section-title p{

    color:#B8C4D5;

    font-size:17px;

}

/*====================================
APPLICATIONS
====================================*/

.apps{

    padding:90px 0;

}

.apps-grid{

    display:grid;

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

    gap:30px;

}

.app-card{

    padding:35px;

    border-radius:24px;

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

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

    backdrop-filter:blur(18px);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.app-card::before{

    content:"";

    position:absolute;

    left:-120px;

    top:-120px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(0,174,239,.10);

    transition:.5s;

}

.app-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,174,239,.40);

    box-shadow:

    0 20px 50px rgba(0,174,239,.18);

}

.app-card:hover::before{

    transform:scale(1.8);

}

.app-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#00AEEF;

    background:rgba(0,174,239,.10);

    margin-bottom:25px;

}

.app-card h3{

    font-size:26px;

    margin-bottom:12px;

}

.app-card p{

    color:#B8C4D5;

    line-height:1.8;

    min-height:60px;

}

.status{

    display:inline-block;

    margin-top:25px;

    padding:8px 18px;

    border-radius:30px;

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

    color:#d7e4f5;

    font-size:13px;

    font-weight:600;

}

.status.ready{

    background:rgba(0,174,239,.15);

    color:#7ED8FF;

}

/*====================================
ROADMAP
====================================*/

.roadmap{

    padding:90px 0;

}

.roadmap-card{

    max-width:950px;

    margin:auto;

    padding:45px;

    border-radius:24px;

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

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

    backdrop-filter:blur(20px);

}

.progress-item{

    margin-bottom:28px;

}

.progress-item:last-child{

    margin-bottom:0;

}

.label{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:12px;

    font-size:15px;

    font-weight:600;

}

.label span{

    color:#7ED8FF;

}

.bar{

    height:12px;

    border-radius:30px;

    background:#182232;

    overflow:hidden;

}

.fill{

    height:100%;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        #00AEEF,
        #0078D4
    );

}

.w100{width:100%;}
.w80{width:80%;}
.w70{width:70%;}
.w60{width:60%;}
.w50{width:50%;}
.w40{width:40%;}
.w30{width:30%;}
.w20{width:20%;}
.w15{width:15%;}
.w10{width:10%;}

/*====================================
CONTACT
====================================*/

.contact{

    padding:90px 0;

}

.contact-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:60px;

    border-radius:28px;

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

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

    backdrop-filter:blur(20px);

    box-shadow:

    0 0 35px rgba(0,174,239,.10);

}

.contact-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,174,239,.12);

    color:#00AEEF;

    font-size:36px;

    margin-bottom:25px;

}

.contact-card h2{

    font-size:38px;

    margin-bottom:20px;

}

.contact-card p{

    color:#B8C4D5;

    line-height:1.9;

    max-width:720px;

    margin:auto;

}

.contact-info{

    margin:35px 0;

}

.contact-info div{

    margin:12px 0;

    color:#E6F1FF;

    font-size:16px;

}

.contact-info i{

    width:30px;

    color:#00AEEF;

}

.contact-action{

    margin-top:25px;

}

/*====================================
FOOTER
====================================*/

footer{

    margin-top:100px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 0;

    background:#050912;

}

.footer-container{

    text-align:center;

}

.footer-logo{

    height:60px;

    margin-bottom:25px;

}

.footer-container h3{

    font-size:30px;

    margin-bottom:15px;

}

.footer-container p{

    color:#B8C4D5;

    line-height:1.8;

}

.footer-slogan{

    margin-top:25px;

    color:#00AEEF;

    font-weight:700;

    letter-spacing:2px;

}

.copyright{

    margin-top:30px;

    color:#8091A8;

    font-size:14px;

}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1200px){

.apps-grid{

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

}

.hero h1{

font-size:56px;

}

}

@media(max-width:992px){

.nav-wrapper{

flex-direction:column;

justify-content:center;

height:auto;

padding:20px 0;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.hero{

padding-top:90px;

}

.hero h1{

font-size:48px;

}

.hero p{

font-size:16px;

}

.construction-card{

padding:45px 30px;

}

.contact-card{

padding:45px 30px;

}

.roadmap-card{

padding:35px;

}

}

@media(max-width:768px){

.apps-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:15px;

line-height:1.8;

}

.section-title h2{

font-size:34px;

}

.construction-card h2{

font-size:32px;

}

.contact-card h2{

font-size:30px;

}

.btn-group{

flex-direction:column;

align-items:center;

}

.btn{

width:100%;

max-width:320px;

}

.progress-item{

margin-bottom:24px;

}

.footer-container h3{

font-size:24px;

}

}

@media(max-width:480px){

.container{

width:94%;

}

.logo img{

height:42px;

}

.hero{

padding:70px 0 50px;

}

.hero-badge{

font-size:11px;

padding:8px 18px;

}

.hero h1{

font-size:32px;

}

.hero p{

font-size:14px;

}

.construction-card{

padding:30px 20px;

border-radius:20px;

}

.construction-card .icon{

width:90px;

height:90px;

font-size:40px;

}

.app-card{

padding:25px;

}

.app-icon{

width:60px;

height:60px;

font-size:24px;

}

.app-card h3{

font-size:22px;

}

.roadmap-card{

padding:25px;

}

.contact-card{

padding:30px 20px;

}

.footer-logo{

height:50px;

}

}

/*====================================
ANIMATION
====================================*/

@keyframes floatUp{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

.hero-badge{

animation:floatUp 4s ease-in-out infinite;

}

.construction-card{

animation:fadeUp .9s ease;

}

.app-card{

animation:fadeUp .8s ease;

}

.contact-card{

animation:fadeUp .9s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*====================================
SCROLLBAR
====================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#08111F;

}

::-webkit-scrollbar-thumb{

background:#00AEEF;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#0BC3FF;

}

/*====================================
SELECTION
====================================*/

::selection{

background:#00AEEF;

color:#fff;

}