/* =====================================================
   IM CONNECT
   style.css
===================================================== */

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

:root{

    --blue:#00A8FF;
    --blue2:#0084ff;
    --dark:#061322;
    --dark2:#091a2d;
    --glass:rgba(255,255,255,.05);
    --white:#ffffff;
    --text:#d9e8f6;

}

html{
    scroll-behavior:smooth;
}

body{

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

    background:
    radial-gradient(circle at top right,#0d2f57 0%,#061322 35%,#03080f 100%);

    color:var(--white);

    overflow-x:hidden;

    min-height:100vh;

}

/* ========================= */

#particles{

    position:fixed;
    inset:0;
    pointer-events:none;

    background:
    radial-gradient(circle at 20% 30%,rgba(0,170,255,.08),transparent 30%),
    radial-gradient(circle at 80% 60%,rgba(0,120,255,.08),transparent 35%);

}

/* ========================= */

header{

    padding:45px 20px;

    display:flex;

    justify-content:center;

}

.logo{

    animation:logoFloat 6s ease-in-out infinite;

}

.logo img{

    width:280px;

    max-width:90%;

    filter:

    drop-shadow(0 0 8px #00A8FF)

    drop-shadow(0 0 25px rgba(0,168,255,.45));

}

/* ========================= */

.hero{

    width:min(1150px,92%);

    margin:auto;

    text-align:center;

    padding:40px;

    background:var(--glass);

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

    border-radius:24px;

    backdrop-filter:blur(18px);

    box-shadow:

    0 15px 60px rgba(0,0,0,.45),

    inset 0 0 0 1px rgba(255,255,255,.03);

}

.hero h1{

    font-size:62px;

    font-weight:800;

    letter-spacing:4px;

    color:var(--blue);

    text-shadow:0 0 20px rgba(0,170,255,.65);

}

.hero h2{

    margin-top:15px;

    font-size:34px;

    font-weight:600;

}

.hero p{

    margin:30px auto;

    max-width:720px;

    line-height:1.8;

    color:var(--text);

    font-size:18px;

}

/* ========================= */

.services{

    display:grid;

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

    gap:25px;

    margin-top:50px;

}

.card{

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

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

    border-radius:20px;

    padding:35px 20px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#00A8FF;

    box-shadow:0 0 35px rgba(0,168,255,.35);

}

.icon{

    font-size:44px;

    margin-bottom:20px;

}

.card h3{

    font-size:18px;

    font-weight:600;

}

/* ========================= */

.buttons{

    margin-top:55px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    text-decoration:none;

    color:white;

    background:linear-gradient(135deg,#009dff,#006eff);

    padding:18px 42px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 0 25px rgba(0,170,255,.35);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 45px rgba(0,170,255,.65);

}

.btn2{

    background:transparent;

    border:2px solid #00A8FF;

}

/* ========================= */

footer{

    margin-top:80px;

    padding:40px;

    text-align:center;

    color:#b8cbe0;

    line-height:2;

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

}

/* ========================= */

@keyframes logoFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ========================= */

@media(max-width:1100px){

.services{

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

}

.hero h1{

font-size:48px;

}

.hero h2{

font-size:28px;

}

}

/* ========================= */

@media(max-width:700px){

.logo img{

width:210px;

}

.hero{

padding:25px;

}

.hero h1{

font-size:34px;

}

.hero h2{

font-size:22px;

}

.hero p{

font-size:16px;

}

.services{

grid-template-columns:1fr;

}

.btn{

width:100%;

}

}
#bgCanvas{

position:fixed;

left:0;
top:0;

width:100%;
height:100%;

z-index:-2;

}

#particles{

position:fixed;

left:0;
top:0;

width:100%;
height:100%;

background:
radial-gradient(circle at top right,
rgba(0,168,255,.12),
transparent 40%),
radial-gradient(circle at bottom left,
rgba(0,110,255,.12),
transparent 35%);

z-index:-1;

}