/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#070b18;
    color:#fff;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:#fff;

}

section{

    padding:100px 10%;

}

/* =========================
BACKGROUND
========================= */

.bg-circle{

    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;

}

.one{

    width:450px;
    height:450px;
    background:#6c63ff;
    top:-100px;
    left:-150px;

}

.two{

    width:500px;
    height:500px;
    background:#00d4ff;
    bottom:-150px;
    right:-150px;

}

/* =========================
NAVBAR
========================= */

header{

    width:100%;
    position:fixed;
    top:0;
    left:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 10%;

    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

    transition:.4s;

}

header.sticky{

    padding:15px 10%;
    background:#060913;

}

.logo{

    font-size:32px;
    font-weight:700;
    color:#00d4ff;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:#00d4ff;

}

/* =========================
BUTTON
========================= */

.btn{

    padding:15px 35px;
    border:none;
    border-radius:40px;

    cursor:pointer;

    background:linear-gradient(45deg,#6c63ff,#00d4ff);

    color:#fff;

    font-weight:600;

    transition:.4s;

    box-shadow:0 10px 35px rgba(0,212,255,.35);

}

.btn:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,212,255,.6);

}

.btn-outline{

    padding:15px 35px;

    border-radius:40px;

    border:2px solid #00d4ff;

    background:none;

    color:white;

    cursor:pointer;

    transition:.4s;

}

.btn-outline:hover{

    background:#00d4ff;
    color:#000;

}

/* =========================
HERO
========================= */

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    align-items:center;

    gap:80px;

}

.hero span{

    color:#00d4ff;
    font-weight:600;
    letter-spacing:2px;

}

.hero h1{

    font-size:70px;
    line-height:1.1;

    margin:20px 0;

}

.hero p{

    color:#d7d7d7;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-btn{

    display:flex;
    gap:20px;

}

.right{

    display:flex;
    justify-content:center;

}

.right img{

    width:520px;

    border-radius:30px;

    animation:float 4s ease-in-out infinite;

    box-shadow:0 40px 60px rgba(0,0,0,.45);

}

/* =========================
FLOAT
========================= */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

/* =========================
TITLE
========================= */

section h2{

    text-align:center;

    font-size:45px;

    margin-bottom:60px;

}

/* =========================
FEATURE
========================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    padding:45px 30px;

    text-align:center;

    border-radius:25px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.card:hover{

    transform:translateY(-15px);

    box-shadow:0 20px 40px rgba(0,212,255,.25);

}

.card i{

    font-size:50px;

    margin-bottom:20px;

    color:#00d4ff;

}

.card h3{

    margin-bottom:15px;

}

.card p{

    color:#ccc;

    line-height:1.7;

}

/* =========================
ABOUT
========================= */

/*==========================
ABOUT
==========================*/

.about{

    display:flex;
    flex-direction:column;
    align-items:center;

}

.about h2{

    margin-bottom:50px;

}

.about .image{

    width:420px;

    display:flex;
    flex-direction:column;

    gap:20px;

}

.about .image img{

    width:100%;

    height:550px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    transition:.4s;

}

.about .image img:hover{

    transform:scale(1.03);

}

.about .image .btn{

    width:100%;

    border-radius:15px;

    padding:18px;

    font-size:18px;

}


/* =========================
   COUNTER
========================= */

.counter{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.counter div{

    text-align:center;

    padding:40px 20px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.counter div:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,212,255,.3);

}

.counter h2{

    font-size:50px;

    color:#00d4ff;

    margin-bottom:10px;

}

.counter span{

    color:#ccc;

    font-size:18px;

}

/* =========================
REVIEW
========================= */

.review{

    text-align:center;

}

.review .cards{

    margin-top:50px;

}

.review-card{

    padding:35px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.review-card:hover{

    transform:translateY(-15px);

    box-shadow:0 25px 45px rgba(108,99,255,.35);

}

.review-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    margin:auto;

    margin-bottom:20px;

    border:4px solid #00d4ff;

}

.review-card h3{

    margin-bottom:12px;

}

.review-card p{

    color:#ddd;

    line-height:1.7;

}

/* =========================
CTA
========================= */

.cta{

    text-align:center;

    border-radius:35px;

    margin:100px 10%;

    background:linear-gradient(135deg,#6c63ff,#00d4ff);

    padding:80px 30px;

    box-shadow:0 25px 60px rgba(0,212,255,.35);

}

.cta h2{

    font-size:50px;

    margin-bottom:20px;

}

.cta p{

    margin-bottom:35px;

    font-size:18px;

}

/* =========================
FOOTER
========================= */

footer{

    padding:35px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#aaa;

}

/* =========================
SCROLL REVEAL
========================= */

.hidden{

    opacity:0;

    transform:translateY(70px);

    transition:1s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* =========================
IMAGE EFFECT
========================= */

.image{

    overflow:hidden;

    border-radius:30px;

}

.image img{

    transition:.6s;

}

.image:hover img{

    transform:scale(1.08) rotate(2deg);

}

/* =========================
CARD GLOW
========================= */

.card::before,
.review-card::before{

    content:"";

    position:absolute;

    width:150px;

    height:150px;

    background:rgba(0,212,255,.15);

    filter:blur(70px);

    top:-40px;

    left:-40px;

    border-radius:50%;

    opacity:0;

    transition:.5s;

}

.card,
.review-card{

    position:relative;

    overflow:hidden;

}

.card:hover::before,
.review-card:hover::before{

    opacity:1;

}

/* =========================
BUTTON ACTIVE
========================= */

.btn:active{

    transform:scale(.95);

}

/* =========================
NAVBAR LINK
========================= */

nav a{

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#00d4ff;

    transition:.4s;

}

nav a:hover::after{

    width:100%;

}

/* =========================
SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#070b18;

}

::-webkit-scrollbar-thumb{

    background:#00d4ff;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#6c63ff;

}

/* =========================
TEXT SELECTION
========================= */

::selection{

    background:#00d4ff;

    color:#000;

}

/* =========================
RESPONSIVE TABLET
========================= */

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-btn{

justify-content:center;

}


.counter{

grid-template-columns:repeat(2,1fr);

}

.right img{

width:420px;

}

nav{

display:none;

}

header{

padding:20px 6%;

}

section{

padding:90px 6%;

}

}
/* =========================
   MOBILE
========================= */

@media (max-width:768px){

header{

padding:15px 5%;

}

.logo{

font-size:28px;

}

.hero{

padding-top:120px;
gap:50px;

}

.hero h1{

font-size:46px;

}

.hero p{

font-size:15px;

}

.hero-btn{

flex-direction:column;

}

.btn,
.btn-outline{

width:100%;

}

.right img{

width:100%;

}



.counter{

grid-template-columns:1fr;

}

.review .cards{

grid-template-columns:1fr;

}

.cta{

margin:80px 5%;
padding:60px 20px;

}

.cta h2{

font-size:36px;

}

section{

padding:80px 5%;

}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

.hero h1{

font-size:36px;

}

section h2{

font-size:32px;

}

.logo{

font-size:24px;

}

.card,
.review-card{

padding:25px;

}

}

/* =========================
HOVER EFFECT
========================= */

.card:hover{

transform:translateY(-15px) scale(1.03);

}

.review-card:hover{

transform:translateY(-15px) scale(1.03);

}


.right img:hover{

transform:scale(1.05);

}

/* =========================
GRADIENT TEXT
========================= */

.hero h1,
.cta h2{

background:linear-gradient(90deg,#ffffff,#00d4ff);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/* =========================
PULSE BUTTON
========================= */

.btn{

animation:pulse 2.5s infinite;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(0,212,255,.6);

}

70%{

box-shadow:0 0 0 25px rgba(0,212,255,0);

}

100%{

box-shadow:0 0 0 0 rgba(0,212,255,0);

}

}

/* =========================
FADE
========================= */

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

.hero .left{

animation:fadeUp 1s ease;

}

.hero .right{

animation:fadeUp 1.3s ease;

}

/* =========================
BACKGROUND ANIMATION
========================= */

@keyframes moveOne{

0%{

transform:translateY(0);

}

50%{

transform:translateY(60px);

}

100%{

transform:translateY(0);

}

}

@keyframes moveTwo{

0%{

transform:translateX(0);

}

50%{

transform:translateX(-60px);

}

100%{

transform:translateX(0);

}

}

.one{

animation:moveOne 10s infinite ease-in-out;

}

.two{

animation:moveTwo 12s infinite ease-in-out;

}

/* =========================
BACK TO TOP
========================= */

#topBtn{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:linear-gradient(45deg,#6c63ff,#00d4ff);

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

z-index:999;

transition:.4s;

box-shadow:0 15px 30px rgba(0,212,255,.35);

}

#topBtn:hover{

transform:translateY(-6px);

}

/* =========================
LOADING
========================= */

.loader{

position:fixed;

inset:0;

background:#070b18;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:.5s;

}

.loader.hide{

opacity:0;
visibility:hidden;

}

.spinner{

width:70px;

height:70px;

border:6px solid rgba(255,255,255,.1);

border-top:6px solid #00d4ff;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* =========================
UTILITY
========================= */

.text-center{

text-align:center;

}

.mt-1{

margin-top:10px;

}

.mt-2{

margin-top:20px;

}

.mt-3{

margin-top:30px;

}

.mt-5{

margin-top:50px;

}

.shadow{

box-shadow:0 20px 40px rgba(0,0,0,.3);

}

.rounded{

border-radius:25px;

}

.glass{

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

}
.btn{
    position:relative;
    overflow:hidden;
}

.ripple{

    position:absolute;

    width:15px;
    height:15px;

    border-radius:50%;

    background:rgba(255,255,255,.8);

    transform:scale(0);

    animation:ripple .6s linear;

}

@keyframes ripple{

    to{

        transform:scale(18);

        opacity:0;

    }

}
/*==========================
FLOATING SOCIAL
==========================*/

.floating-social{

    position:fixed;

    right:25px;

    bottom:110px;

    display:flex;

    flex-direction:column;

    gap:18px;

    z-index:99999;

}

.social-btn{

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#fff;

    text-decoration:none;

    transition:.35s;

    animation:pulseSocial 1.8s infinite;

}

.whatsapp{

    background:linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

    box-shadow:0 0 30px rgba(37,211,102,.8);

}

.telegram{

    background:#229ED9;

    box-shadow:0 0 25px rgba(34,158,217,.7);

}

.social-btn:hover{

    transform:scale(1.15) rotate(8deg);

}

@keyframes pulseSocial{

    0%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(255,255,255,.5);

    }

    70%{

        transform:scale(1.08);

        box-shadow:0 0 0 18px rgba(255,255,255,0);

    }

    100%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(255,255,255,0);

    }

}
/* =========================
END
========================= */

