

/*=========================================
  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;
    text-decoration:none;
    list-style:none;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050b17;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}


/*=========================================
BACKGROUND
=========================================*/

body::before{
    content:"";
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:

    radial-gradient(circle at 20% 20%,
    rgba(0,255,140,.08),
    transparent 30%),

    radial-gradient(circle at 80% 30%,
    rgba(0,255,150,.08),
    transparent 30%),

    radial-gradient(circle at 50% 80%,
    rgba(0,255,120,.05),
    transparent 40%);

    z-index:-3;
}


body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:

    linear-gradient(rgba(255,255,255,.02) 1px,
    transparent 1px),

    linear-gradient(90deg,
    rgba(255,255,255,.02) 1px,
    transparent 1px);

    background-size:60px 60px;
    z-index:-2;
}



/*=========================================
NAVBAR
=========================================*/

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    padding:25px 70px;
}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(10,15,28,.85);

    border:1px solid rgba(0,255,150,.15);

    backdrop-filter:blur(20px);

    border-radius:18px;

    padding:18px 35px;

    box-shadow:0 10px 35px rgba(0,255,120,.05);

}



.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{

    width:55px;

}

.logo h2{

    color:#fff;
    font-size:28px;
    font-weight:700;

}

.logo span{

    color:#11ff80;

}



.nav-links{

    display:flex;
    gap:45px;

}

.nav-links a{

    color:#fff;
    font-size:17px;
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:#11ff80;

}

.nav-links .active{

    color:#11ff80;
    position:relative;

}

.nav-links .active::after{

    content:"";
    position:absolute;
    width:100%;
    height:2px;
    background:#11ff80;
    left:0;
    bottom:-8px;

}



/*=========================================
BUTTONS
=========================================*/

.btn-nav{

    padding:15px 35px;

    background:linear-gradient(135deg,#00ff84,#00d86a);

    color:#000;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    display:flex;
    align-items:center;
    gap:10px;

}

.btn-nav:hover{

    transform:translateY(-4px);

    box-shadow:

    0 0 15px #00ff88,

    0 0 35px rgba(0,255,120,.35);

}



.btn-green{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(135deg,#00ff84,#00d86a);

    color:#000;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-green:hover{

    transform:translateY(-5px);

    box-shadow:

    0 0 18px #00ff88,

    0 0 40px rgba(0,255,100,.35);

}



.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border:2px solid #00ff84;

    color:#fff;

    border-radius:50px;

    padding:17px 40px;

    transition:.35s;

}

.btn-outline:hover{

    background:#00ff84;

    color:#000;

}



/*=========================================
MOBILE MENU
=========================================*/

.menu-btn{

    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;

}



/*=========================================
HERO SECTION
=========================================*/

.hero{

    width:100%;

    min-height:100vh;

    padding:180px 80px 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}



.hero-left{

    width:55%;

}



.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    border:1px solid #00ff84;

    color:#00ff84;

    border-radius:40px;

    padding:10px 22px;

    margin-bottom:30px;

    background:rgba(0,255,120,.08);

}



.hero h1{

    font-size:72px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}



.hero h1 span{

    color:#00ff84;

}



.hero p{

    max-width:650px;

    font-size:22px;

    color:#c8d1dd;

    margin-bottom:40px;

}



.hero-buttons{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}



/*=========================================
RIGHT SIDE
=========================================*/

.hero-right{

    width:45%;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}



.circle{

    width:520px;

    height:520px;

    border-radius:50%;

    background:#161d2d;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    z-index:2;

    box-shadow:

    0 0 50px rgba(0,255,120,.20);

}

.circle img{

    width:500px;

}


/*=========================================
GLOWING CIRCLE
=========================================*/

.circle-glow{

    position:absolute;

    width:620px;
    height:620px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,255,120,.45),
    rgba(0,255,120,.12),
    transparent 70%);

    filter:blur(40px);

    animation:glow 5s ease-in-out infinite;

    z-index:1;

}

@keyframes glow{

    0%{
        transform:scale(1);
        opacity:.7;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:.7;
    }

}

.circle::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    border:2px solid rgba(0,255,120,.25);

    animation:rotate 18s linear infinite;

}

.circle::after{

    content:"";

    position:absolute;

    width:92%;
    height:92%;

    border-radius:50%;

    border:1px dashed rgba(0,255,120,.35);

    animation:rotateReverse 12s linear infinite;

}

@keyframes rotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes rotateReverse{

    from{
        transform:rotate(360deg);
    }

    to{
        transform:rotate(0deg);
    }

}


/*=========================================
STATS SECTION
=========================================*/

.stats{

    width:100%;

    padding:70px 80px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    background:rgba(18,25,40,.88);

    border:1px solid rgba(0,255,120,.12);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(15px);

}

.card:hover{

    transform:translateY(-12px);

    border-color:#00ff84;

    box-shadow:

    0 0 25px rgba(0,255,120,.25);

}

.card .icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,255,120,.08);

    color:#00ff84;

    font-size:30px;

    margin-bottom:20px;

}

.card h2{

    font-size:42px;

    color:#00ff84;

    margin-bottom:10px;

}

.card p{

    color:#c8d1dd;

    font-size:17px;

}


/*=========================================
SERVICES
=========================================*/

.services{

    padding:100px 80px;

}

.services h2{

    text-align:center;

    font-size:48px;

    margin-bottom:60px;

}

.services h2 span{

    color:#00ff84;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-box{

    background:#111a2d;

    border-radius:22px;

    padding:45px 35px;

    text-align:center;

    border:1px solid rgba(0,255,120,.10);

    transition:.35s;

}

.service-box:hover{

    transform:translateY(-10px);

    border-color:#00ff84;

    box-shadow:

    0 0 30px rgba(0,255,120,.20);

}

.service-box i{

    font-size:48px;

    color:#00ff84;

    margin-bottom:25px;

}

.service-box h3{

    font-size:26px;

    margin-bottom:15px;

}

.service-box p{

    color:#c8d1dd;

    font-size:17px;

}


/*=========================================
ABOUT SECTION
=========================================*/

.about{

    padding:120px 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.about-image{

    width:40%;

    display:flex;

    justify-content:center;

}

.about-image img{

    width:340px;

    filter:drop-shadow(0 0 35px rgba(0,255,120,.45));

}

.about-content{

    width:60%;

}

.about-content h2{

    font-size:48px;

    margin-bottom:25px;

}

.about-content h2 span{

    color:#00ff84;

}

.about-content p{

    color:#c8d1dd;

    font-size:20px;

    margin-bottom:35px;

    line-height:1.8;

}


/*=========================================
CONTACT SECTION
=========================================*/

.contact{

    padding:100px 80px;

}

.contact h2{

    text-align:center;

    font-size:48px;

    margin-bottom:60px;

}

.contact h2 span{

    color:#00ff84;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.contact-card{

    background:#111a2d;

    border:1px solid rgba(0,255,120,.10);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:#00ff84;

    box-shadow:0 0 25px rgba(0,255,120,.20);

}

.contact-card i{

    font-size:42px;

    color:#00ff84;

    margin-bottom:20px;

}

.contact-card h3{

    font-size:24px;

    margin-bottom:10px;

}

.contact-card p{

    color:#c8d1dd;

}


/*=========================================
FOOTER
=========================================*/

footer{

    padding:40px 20px;

    text-align:center;

    border-top:1px solid rgba(0,255,120,.12);

    background:#08111d;

}

footer p{

    color:#c8d1dd;

    font-size:15px;

}



/*=========================================
CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111d;

}

::-webkit-scrollbar-thumb{

    background:#00ff84;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#00d86a;

}



/*=========================================
SECTION SPACING
=========================================*/

section{

    position:relative;

    z-index:1;

}



/*=========================================
SMALL GLOW EFFECT
=========================================*/

.service-box::before,
.card::before,
.contact-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:linear-gradient(
        135deg,
        rgba(0,255,120,.06),
        transparent 40%
    );

    opacity:0;

    transition:.4s;

    pointer-events:none;

}

.service-box:hover::before,
.card:hover::before,
.contact-card:hover::before{

    opacity:1;

}



/*=========================================
TABLET
=========================================*/

@media(max-width:1200px){

header{

    padding:20px;

}

.hero{

    padding:170px 40px 80px;

    gap:40px;

}

.hero h1{

    font-size:56px;

}

.hero p{

    font-size:18px;

}

.circle{

    width:420px;
    height:420px;

}

.circle img{

    width:250px;

}

.circle-glow{

    width:500px;
    height:500px;

}

.stats{

    grid-template-columns:repeat(2,1fr);

}

.service-grid{

    grid-template-columns:repeat(2,1fr);

}

.about{

    flex-direction:column;

    text-align:center;

}

.about-image,
.about-content{

    width:100%;

}

.contact-grid{

    grid-template-columns:repeat(2,1fr);

}

}



/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

.nav-links{

    position:absolute;

    top:95px;

    left:-100%;

    width:100%;

    background:#08111d;

    flex-direction:column;

    text-align:center;

    padding:35px 0;

    transition:.4s;

    border-radius:20px;

}

.nav-links.active{

    left:0;

}

.nav-links li{

    margin:18px 0;

}

.menu-btn{

    display:block;

}

.btn-nav{

    display:none;

}

.hero{

    flex-direction:column;

    text-align:center;

    padding:150px 25px 60px;

}

.hero-left,
.hero-right{

    width:100%;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:17px;

}

.hero-buttons{

    justify-content:center;

}

.circle{

    width:300px;

    height:300px;

}

.circle img{

    width:180px;

}

.circle-glow{

    width:360px;

    height:360px;

}

.stats{

    padding:70px 25px;

    grid-template-columns:1fr;

}

.services{

    padding:80px 25px;

}

.service-grid{

    grid-template-columns:1fr;

}

.about{

    padding:80px 25px;

}

.contact{

    padding:80px 25px;

}

.contact-grid{

    grid-template-columns:1fr;

}

.services h2,
.contact h2,
.about-content h2{

    font-size:34px;

}

}



/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

.logo h2{

    font-size:20px;

}

.logo img{

    width:42px;

}

.hero h1{

    font-size:34px;

}

.badge{

    font-size:13px;

    padding:8px 16px;

}

.btn-green,
.btn-outline{

    width:100%;

    justify-content:center;

}

.circle{

    width:250px;

    height:250px;

}

.circle img{

    width:150px;

}

.circle-glow{

    width:300px;

    height:300px;

}

.card{

    padding:30px 20px;

}

.service-box{

    padding:30px 20px;

}

.contact-card{

    padding:30px 20px;

}

.contact-card h3{

    font-size:18px;

}

}



/*=========================================
FADE-IN ANIMATION
=========================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-left,
.hero-right,
.card,
.service-box,
.about-content,
.about-image,
.contact-card{

    animation:fadeUp .9s ease both;

}



/*=========================================
SELECTION COLOR
=========================================*/

::selection{

    background:#00ff84;

    color:#000;

}