/* ========================================= */
/* ROOT */
/* ========================================= */

:root{

    --primary:#7ED321;
    --secondary:#4CAF50;

    --text:#222222;
    --muted:#7C7C7C;

}

/* ========================================= */
/* GLOBAL */
/* ========================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

    background:linear-gradient(to bottom,#ffffff,#f8fdf1);

    color:var(--text);

}

.container{

    max-width:1200px;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

section{

    position:relative;

}

/* ========================================= */
/* COMMON SECTION */
/* ========================================= */

.section-header{

    max-width:700px;

    margin:auto;

    margin-bottom:70px;

}

.section-badge{

    display:inline-flex;

    padding:10px 18px;

    border-radius:50px;

    background:#F4FBE7;

    color:#7ED321;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.section-title{

    font-size:48px;

    margin-bottom:20px;

    font-weight:700;

    color:#222222;

}

.section-description{

    font-size:18px;

    color:#7C7C7C;

    line-height:1.8;

}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.theme-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(135deg,#8AD61D,#4CAF50);

    color:#ffffff;

    font-weight:600;

    transition:0.3s ease;

    box-shadow:0 12px 30px rgba(126,211,33,0.20);

}

.theme-btn:hover{

    transform:translateY(-3px);

    color:#ffffff;

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    border:1px solid #E5E7EB;

    background:#ffffff;

    color:#222222;

    font-weight:600;

    transition:0.3s ease;

}

.secondary-btn:hover{

    transform:translateY(-3px);

    color:#222222;

}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.custom-navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:18px 0;

    background:rgba(255,255,255,0.94);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,0.05);

}

.navbar-brand img{

    width:240px;

}

.navbar-nav{

    gap:32px;

}

.nav-link{

    color:#222222 !important;

    font-size:16px;

    font-weight:500;

}

.nav-link:hover{

    color:#7ED321 !important;

}

.navbar-toggler{

    border:none;

    box-shadow:none !important;

}