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

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0f1a;
    color:#fff;
    line-height:1.5;
    font-size:14px;
}

img{
    display:block;
    max-width:100%;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
    url("../assets/images/background.webp");
    filter:blur(2px);
    background-size:cover;
    background-position:center;
    z-index:-3;
}

.background-overlay{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top,
    rgba(0,170,255,.18),
    transparent 45%);
    z-index:-2;
}

.mobile-page{
    max-width:920px;
    margin:auto;
    padding:45px 18px 60px;
}

.back-button{
    position:fixed;
    top:15px;
    right:15px;
    left:auto;
    padding:7px 16px;
    background:#ffffff;
    color:#000000;
    border:none;
    outline:none;
    border-radius:999px;
    font-size:14px;
    text-decoration:none;
    z-index:1000;
    transition:.25s;
    -webkit-appearance:none;
    appearance:none;
}

.back-button:hover{
    background:#00AAFF;
    color:#ffffff;
    transform:translateY(-2px);
}

.back-button:focus,
.back-button:focus-visible{
    outline:2px solid #00AAFF;
    outline-offset:3px;
    border:none;
}

.hero-section{
    text-align:center;
    margin-bottom:38px;
}

.hero-content h1{
    font-size:1.8rem;
    font-weight:600;
    margin-bottom:12px;
}

.hero-content h1::after{
    content:"";
    display:block;
    height:2px;
    background:#00AAFF;
    width:60px;
    margin:12px auto 0;
}

.hero-description{
    max-width:650px;
    margin:auto;
    font-size:.86rem;
    color:#d9d9d9;
}

.project-card{
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(16px);
    padding:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.28);
    margin-bottom:40px;
}

.project-card::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:#00AAFF;
    filter:blur(120px);
    opacity:.15;
    right:-90px;
    top:-90px;
}

.project-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:15px;
    margin-bottom:20px;
}

.project-header h2{
    font-size:1.45rem;
}

.project-location{
    color:#00AAFF;
    display:block;
    margin-top:6px;
    letter-spacing:1px;
    font-size:.82rem;
}

.coming-soon-card{
    text-align:center;
    max-width:620px;
    margin:20px auto 0;
}

.phone-icon{
    width:100px;
    height:100px;
    font-size:3rem;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,170,255,.12);
    border:2px solid rgba(0,170,255,.25);
    animation:float 4s ease-in-out infinite;
}

.coming-soon-card h3{
    font-size:1.45rem;
    margin-bottom:15px;
}

.coming-soon-card p{
    max-width:620px;
    margin:0 auto 25px;
    font-size:.85rem;
    line-height:1.7;
}

.explore-btn{
    display:inline-block;
    padding:12px 28px;
    transition:.3s;
    color:white;
    text-decoration:none;
    border:1px solid #00AAFF;
}

.explore-btn:hover{
    background:#00AAFF;
    color:#07111f;
    transform:translateY(-4px);
}

.explore-services{
    position:relative;
    overflow:hidden;
    max-width:920px;
    margin:40px auto 50px;
    padding:35px 25px;
    text-align:center;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);
    border:1px solid rgba(0,170,255,.22);
}

.explore-services::before{
    content:"";
    position:absolute;
    width:240px;
    height:240px;
    background:#00AAFF;
    filter:blur(120px);
    opacity:.12;
    top:-80px;
    right:-80px;
}

.explore-services>*{
    position:relative;
    z-index:2;
}

.explore-services h2{
    font-size:1.35rem;
    margin-bottom:15px;
}

.explore-services p{
    max-width:620px;
    margin:0 auto 25px;
    font-size:.85rem;
    line-height:1.7;
}

footer{
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(14px);
    font-size:12px;
}

footer a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:#00AAFF;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

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

}

@media(max-width:768px){

.mobile-page{
    padding:65px 12px 45px;
}

.project-card{
    padding:15px;
}

.hero-content h1{
    font-size:1.55rem;
}

.hero-description{
    font-size:.8rem;
}

.phone-icon{
    width:80px;
    height:80px;
    font-size:2.4rem;
}

.coming-soon-card h3{
    font-size:1.15rem;
}

.coming-soon-card p{
    font-size:.8rem;
}

.explore-services{
    margin:30px 12px 40px;
    padding:25px 18px;
}

.explore-services h2{
    font-size:1.15rem;
}

.explore-services p{
    font-size:.8rem;
}

}

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0b0f1a;
}

::-webkit-scrollbar-thumb{
    background:#153652;
}

::-webkit-scrollbar-thumb:hover{
    background:#1d4f79;
}

::selection{
    background:#00AAFF;
    color:#08131f;
}