@import url(bpg_nino_mtavruli_bold.ttf);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s ease-in;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
}

:root {
    --main-color: #00ff51;
    --black: #003d00;
    --bg: #012401;
    --border: .1rem solid green;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 7px;
}

body {
    background: black;
}





/* ================================
   HEADER
================================ */


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background:
        rgba(5, 15, 9, .65);
    backdrop-filter: blur(15px);
    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}



/* LOGO */


.logo img {
    width: 100px;
    height: auto;
    display: block;
}



.navbar {
    display: flex;
    align-items: center;
    gap: 35px;
}



.navbar a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: .3s;
}



.navbar a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff51;
    transition: .3s;
}



.navbar a:hover,
.navbar a.active {
    color: #00ff51;
}



.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}























::selection {
    background-color: #1c6715;
    color: rgb(0, 255, 30);
}





/* ================================
   COMPANY STORY
================================ */


.about-story {
    margin: 70px 0;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 40px;
    border-radius: 30px;
    background:
        rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}



.story-icon {
    min-width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00ff51;
    color: #06110a;
    font-size: 35px;
}



.story-content h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}



.story-content p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.story-content p span {
    color: #00ff51;
}

@media(max-width:700px) {


    .about-story {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .story-content h3 {
        font-size: 26px;
    }

}




/*=========================================
            ABOUT SECTION
=========================================*/

.about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background: linear-gradient(135deg, #0b0b0b, #131313, #191919);
    color: #fff;
}

.about-section .container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 5;
}

/*============================
        BACKGROUND GLOW
=============================*/

.about-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
    animation: floatGlow 10s ease-in-out infinite;
}

.circle1 {
    width: 420px;
    height: 420px;
    background: #00ff51;
    top: -140px;
    left: -120px;
}

.circle2 {
    width: 360px;
    height: 360px;
    background: #01cd15;
    right: -120px;
    bottom: -100px;
    animation-delay: 4s;
}

@keyframes floatGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*============================
        TITLE
=============================*/

.about-title {
    text-align: center;
    margin-bottom: 70px;
    margin-top: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(0, 200, 83, .12);
    color: #01cd15;
    border: 1px solid rgba(0, 230, 118, .25);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-title h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-title h2 span {
    color: #01cd15;
}

.about-title p {
    max-width: 760px;
    margin: auto;
    color: #c8c8c8;
    font-size: 18px;
    line-height: 1.9;
}

/*============================
        FEATURES GRID
=============================*/

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/*============================
        CARD
=============================*/

.about-card {
    position: relative;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 40px 28px;
    transition: .45s;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: #01cd1522;
    border-radius: 50%;
    top: -120px;
    right: -120px;
    transition: .5s;
}

.about-card:hover {
    transform: translateY(-12px);
    border-color: #01cd15;
    box-shadow: 0 25px 45px rgba(0, 230, 118, .22);
}

.about-card:hover::before {
    transform: scale(1.4);
}

/*============================
        ICON
=============================*/

.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff51, #01cd15);
    margin-bottom: 25px;
    font-size: 28px;
    transition: .45s;
}

.about-card:hover .icon-box {
    transform: rotate(12deg) scale(1.12);
    box-shadow: 0 0 35px rgba(0, 230, 118, .5);
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 23px;
    color: var(--main-color);
}

.about-card p {
    color: whitesmoke;
    line-height: 1.8;
    font-size: 1.3rem;
}





/*=========================================
            ABOUT STATS
=========================================*/

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 80px;
}

.stat-box {
    position: relative;
    text-align: center;
    padding: 35px 20px;

    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;

    overflow: hidden;
    transition: .4s ease;
}

.stat-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 230, 118, .15),
            transparent);
    opacity: 0;
    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: #01cd15;
    box-shadow: 0 20px 40px rgba(0, 230, 118, .20);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box h3 {
    font-size: 48px;
    color: #01cd15;
    margin-bottom: 12px;
    font-weight: 800;
}

.stat-box span {
    color: #d9d9d9;
    font-size: 17px;
    letter-spacing: .5px;
}

/*=========================================
            BUTTON
=========================================*/

.about-btn {
    text-align: center;
    margin-top: 70px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: linear-gradient(135deg, #00ff51, #01cd15);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.about-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);
    transition: .7s;
}

.about-button:hover::before {
    left: 120%;
}

.about-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, .45);
}

.about-button i {
    transition: .35s;
}

.about-button:hover i {
    transform: translateX(8px);
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .about-section {
        padding: 90px 20px;
    }

    .about-title h2 {
        font-size: 38px;
    }

    .about-title p {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 35px 25px;
    }

    .stat-box h3 {
        font-size: 40px;
    }

    .about-button {
        width: 100%;
        justify-content: center;
    }
}

@media(max-width:480px) {

    .about-title h2 {
        font-size: 30px;
    }

    .section-tag {
        font-size: 14px;
        padding: 9px 18px;
    }

    .icon-box {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .stat-box {
        padding: 28px 18px;
    }

    .stat-box h3 {
        font-size: 34px;
    }

    .about-button {
        padding: 16px 28px;
        font-size: 16px;
    }
}



/*=========================================
        PREMIUM PARTICLES
=========================================*/

.about-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.about-particles span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #01cd15;
    opacity: .18;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {

    from {
        transform: translateY(120vh) scale(.3);
    }

    to {
        transform: translateY(-120px) scale(1.3);
    }

}

/*=========================================
        CARD GLOW BORDER
=========================================*/

.about-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg,
            transparent,
            rgba(0, 230, 118, .6),
            transparent);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .45s;
}

.about-card:hover::after {
    opacity: 1;
}






@media (max-width: 768px) {

    #menu-bars {
        display: inline-block;
    }


}


