*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f8fbff;
    overflow-x:hidden;
    color:#0f172a;
}

body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.background-animation{
    position:fixed;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at 20% 30%, rgba(0,119,255,.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(0,210,255,.08), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(0,119,255,.08), transparent 40%);
    z-index:-1;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
    text-align:center;
}

.logo{
    width:450px;
    max-width:95%;
    margin-bottom:20px;
}
.logo-wrapper{
    position:relative;
    display:inline-block;
}

.logo-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10;
}

h1{
    font-size:70px;
    font-weight:800;
    color:#003ea8;
    margin-bottom:15px;
}

.divider{
    width:120px;
    height:5px;
    margin:auto;
    border-radius:10px;
    background:linear-gradient(to right,#003ea8,#00c8c8);
}

h2{
    margin-top:25px;
    font-size:36px;
    font-weight:600;
}

h2 span{
    color:#0066ff;
}

.description{
    max-width:700px;
    margin:20px auto 50px;
    font-size:20px;
    color:#64748b;
    line-height:1.7;
}

.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:70px;
}

.time-box{
    width:140px;
    padding:25px;
    border-radius:20px;
    background:white;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.time-box span{
    font-size:42px;
    font-weight:700;
    color:#0056d6;
}

.time-box p{
    margin-top:8px;
    color:#64748b;
}

.services{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.service{
    width:200px;
    background:white;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service:hover{
    transform:translateY(-8px);
}

.service i{
    font-size:40px;
    color:#0056d6;
    margin-bottom:15px;
}

.service h3{
    font-size:18px;
}

.subscribe-box{
    max-width:850px;
    margin:auto;
    padding:50px;
    border-radius:25px;
    background:linear-gradient(135deg,#003ea8,#00bcd4);
    color:white;
}

.subscribe-box h3{
    font-size:36px;
}

.subscribe-box p{
    margin:10px 0 30px;
}

.subscribe-box form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
}

.subscribe-box input{
    flex:1;
    min-width:250px;
    padding:15px;
    border:none;
    border-radius:10px;
    outline:none;
}

.subscribe-box button{
    padding:15px 30px;
    border:none;
    border-radius:10px;
    background:#001f70;
    color:white;
    cursor:pointer;
    font-weight:600;
}

.social-icons{
    margin-top:35px;
}

.social-icons a{
    width:50px;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    color:white;
    text-decoration:none;
    margin:0 8px;
    transition:.3s;
}

.social-icons a:hover{
    background:white;
    color:#003ea8;
}

footer{
    margin-top:40px;
    color:#64748b;
}

/* ==========================================
   FULL SCREEN HERO
========================================== */

.hero-section{
    min-height:100vh;
    position:relative;
}

/* ==========================================
   PARTICLES
========================================== */

#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:-2;
    background:#f7fbff;
}

/* ==========================================
   DIGITAL GLOBE
========================================== */

.globe-container{
    display:flex;
    justify-content:center;
    margin-bottom:30px;
}

.globe{
    width:180px;
    height:180px;
    position:relative;
    animation:rotateGlobe 18s linear infinite;
}

.ring{
    position:absolute;
    width:100%;
    height:100%;
    border:2px solid rgba(0,110,255,.25);
    border-radius:50%;
}

.ring:nth-child(1){
    transform:rotateX(75deg);
}

.ring:nth-child(2){
    transform:rotateY(75deg);
}

.ring:nth-child(3){
    transform:rotateX(35deg);
}

.ring:nth-child(4){
    transform:rotateY(35deg);
}

@keyframes rotateGlobe{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ==========================================
   GLASS CARDS
========================================== */

.service{
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.3);
}

.time-box{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(15px);
}

/* ==========================================
   FLOATING ANIMATION
========================================== */

/* .logo{
    animation:floating 4s ease-in-out infinite;
} */

/* =========================
   LAUNCH MESSAGE
========================= */

.launch-message{
    max-width: 850px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;

    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.launch-message h3{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;

    background: linear-gradient(90deg,#003ea8,#00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.launch-message p{
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* =========================
   VISION BOX
========================= */

.vision-box{
    max-width: 1000px;
    margin: 70px auto;

    padding: 50px;

    background: linear-gradient(
        135deg,
        #003ea8,
        #0056d6,
        #00bcd4
    );

    border-radius: 30px;

    color: white;

    box-shadow: 0 20px 40px rgba(0,62,168,0.25);

    position: relative;
    overflow: hidden;
}

/* Decorative circles */

.vision-box::before{
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    background: rgba(255,255,255,0.08);

    border-radius: 50%;

    top: -120px;
    right: -80px;
}

.vision-box::after{
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(255,255,255,0.06);

    border-radius: 50%;

    bottom: -80px;
    left: -60px;
}

.vision-box h3{
    font-size: 38px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.vision-box p{
    font-size: 18px;
    line-height: 1.9;

    max-width: 800px;
    margin: auto;

    color: rgba(255,255,255,0.95);

    position: relative;
    z-index: 2;
}

/* =========================
   HOVER EFFECTS
========================= */

.launch-message,
.vision-box{
    transition: all 0.4s ease;
}

.launch-message:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.vision-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,62,168,0.35);
}

/* =========================
   MOBILE
========================= */
@media print {
        body{
            display:none;
        }
    }
    
@media(max-width:768px){
    

    .launch-message{
        padding: 30px 20px;
    }

    .launch-message h3{
        font-size: 28px;
    }

    .launch-message p{
        font-size: 16px;
    }

    .vision-box{
        padding: 35px 25px;
    }

    .vision-box h3{
        font-size: 30px;
    }

    .vision-box p{
        font-size: 16px;
    }
}

@keyframes floating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}

@media(max-width:768px){

    h1{
        font-size:45px;
    }

    h2{
        font-size:26px;
    }

    .logo{
        width:300px;
    }

    .time-box{
        width:120px;
    }

    .subscribe-box{
        padding:30px 20px;
    }
}