/*=========================
 PRO ADS MEDIA
 Premium Agency Theme
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --bg:#040816;
    --bg2:#07142e;
    --card:#0d1b3d;
    --card2:#132855;

    --primary:#008cff;
    --secondary:#00b8ff;

    --text:#ffffff;
    --light:#cddcff;

    --border:#1d6dff;

}

body{

    font-family:'Poppins',sans-serif;
    background:linear-gradient(180deg,#020612,#07152d);
    color:var(--text);
}

/* NAVBAR */

.navbar{

    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    position:sticky;
    top:0;
    z-index:1000;

    backdrop-filter:blur(15px);

    background:rgba(3,10,30,.75);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.logo{

    font-size:34px;

    font-weight:800;

    color:var(--primary);

    letter-spacing:1px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:40px;

}

.navbar ul li a{

    text-decoration:none;

    color:white;

    transition:.35s;

    font-weight:500;

}

.navbar ul li a:hover{

    color:var(--primary);

}

.nav-btn{

    text-decoration:none;

    color:white;

    background:linear-gradient(90deg,#008cff,#00b8ff);

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.nav-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,140,255,.4);

}

/* BANNER */

.banner{

    width:100%;

    max-width:1250px;

    margin:50px auto;

    padding:0 20px;

}

.banner img{

    width:100%;

    border-radius:25px;

    display:block;

    box-shadow:0 30px 70px rgba(0,132,255,.25);

    transition:.5s;

}

.banner img:hover{

    transform:scale(1.02);

}

/* HERO */

.hero{

    width:100%;

    max-width:1250px;

    margin:auto;

    padding:70px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.hero-left{

    flex:1;

}

.hero-left h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-left p{

    color:var(--light);

    line-height:2;

    font-size:18px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    text-decoration:none;

    background:linear-gradient(90deg,#008cff,#00b8ff);

    color:white;

    padding:18px 34px;

    border-radius:50px;

    font-weight:600;

}

.btn-secondary{

    text-decoration:none;

    border:2px solid var(--primary);

    color:white;

    padding:18px 34px;

    border-radius:50px;

}

/* GLASS CARD */

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.glass-card{

    width:380px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    padding:40px;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.glass-card h2{

    margin-bottom:30px;

    color:#00b8ff;

}

.skill{

    display:flex;

    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.skill span{

    color:#00ff95;

}

/* STATS */

.stats{

    max-width:1200px;

    margin:80px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:0 20px;

}

.stat{

    background:var(--card);

    text-align:center;

    padding:35px;

    border-radius:18px;

    transition:.4s;

}

.stat:hover{

    transform:translateY(-10px);

    background:var(--card2);

}

.stat h2{

    color:#00b8ff;

    font-size:42px;

}

.stat p{

    margin-top:15px;

    color:var(--light);

}

/* ABOUT */

#about{

    max-width:1100px;

    margin:100px auto;

    padding:0 20px;

    text-align:center;

}

#about h2{

    font-size:42px;

    margin-bottom:30px;

}

#about p{

    color:var(--light);

    font-size:18px;

    line-height:2;

}

/* SERVICES */

#services{

    max-width:1250px;

    margin:auto;

    padding:80px 20px;

}

#services h2{

    text-align:center;

    margin-bottom:50px;

    font-size:44px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.service-card{

    background:var(--card);

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:35px;

    transition:.45s;

}

.service-card:hover{

    transform:translateY(-10px);

    background:var(--card2);

    border-color:#008cff;

    box-shadow:0 25px 50px rgba(0,140,255,.25);

}

.service-card h3{

    color:#00b8ff;

    margin-bottom:18px;

}

.service-card p{

    color:var(--light);

    line-height:1.9;

}
/*=========================
CALL TO ACTION
=========================*/

.cta{
    max-width:1200px;
    margin:100px auto;
    padding:70px 40px;
    border-radius:25px;
    text-align:center;
    background:linear-gradient(135deg,#008cff,#00b8ff);
    box-shadow:0 30px 80px rgba(0,140,255,.35);
}

.cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta p{
    font-size:18px;
    margin-bottom:35px;
}

.cta a{
    display:inline-block;
    padding:18px 40px;
    border-radius:50px;
    background:#041024;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.cta a:hover{
    transform:translateY(-5px);
    background:#061935;
}

/*=========================
FOOTER
=========================*/

footer{

    margin-top:100px;

    background:#020817;

    padding:70px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h2{

    color:#00b8ff;

    margin-bottom:25px;

    font-size:34px;

}

footer p{

    color:#b7cbff;

    margin:10px 0;

}

/*=========================
FLOATING WHATSAPP
=========================*/

.floating{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:30px;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

    transition:.35s;

    z-index:9999;

}

.floating:hover{

    transform:scale(1.12);

}

/*=========================
ANIMATIONS
=========================*/

.hero-left{

    animation:slideLeft 1s ease;

}

.hero-right{

    animation:slideRight 1s ease;

}

.banner{

    animation:fadeDown 1s ease;

}

.service-card{

    animation:fadeUp .8s ease;

}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#020817;

}

::-webkit-scrollbar-thumb{

    background:#008cff;

    border-radius:20px;

}

/*=========================
TEXT SELECTION
=========================*/

::selection{

    background:#00b8ff;

    color:#fff;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1100px){

.hero{

flex-direction:column;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-left h1{

font-size:46px;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.navbar{

flex-direction:column;

gap:20px;

padding:20px;

}

.navbar ul{

gap:18px;

flex-wrap:wrap;

justify-content:center;

}

.logo{

font-size:28px;

}

.banner{

margin:25px auto;

}

.banner img{

border-radius:15px;

}

.hero{

padding:40px 20px;

}

.hero-left h1{

font-size:34px;

}

.hero-left p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-secondary{

width:260px;

text-align:center;

}

.glass-card{

width:100%;

}

.stats{

grid-template-columns:1fr;

}

#about h2,
#services h2,
.cta h2{

font-size:32px;

}

.service-grid{

grid-template-columns:1fr;

}

.cta{

padding:50px 20px;

}

.cta a{

width:100%;

max-width:280px;

}

.floating{

width:58px;

height:58px;

font-size:26px;

right:18px;

bottom:18px;

}

}

@media(max-width:480px){

.hero-left h1{

font-size:28px;

line-height:1.4;

}

.logo{

font-size:24px;

}

.navbar ul{

font-size:14px;

}

.hero-left p{

line-height:1.8;

}

footer h2{

font-size:28px;

}

}