*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#000;
    color:white;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:800;
    color:#b4f000;
}

.logo span{
    display:block;
    font-size:12px;
    font-weight:300;
    color:#ccc;
}

/* Desktop Nav */
nav{
    transition:0.4s;
}

nav ul{
    display:flex;
    list-style:none;
    gap:40px;
}

nav ul li a{
    text-decoration:none;
    color:#ccc;
    font-size:15px;
    transition:0.3s;
}

nav ul li a:hover{
    color:#b4f000;
}

/* ================= HAMBURGER ================= */


.maintainace{
    text-align: center;
display: inline;

}
.maintainace h1{
font-size: 60px;
color: yellow;


}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.hamburger span{
    width:25px;
    height:3px;
    background:#b4f000;
    transition:0.4s;
}

/* Animation when active */
.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-6px);
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:120px 8% 0 8%;
}

.hero-text{
    max-width:550px;
}

.hero-text h1{
    font-size:55px;
    font-weight:800;
    line-height:1.2;
}

.hero-text h1 span{
    color:#b4f000;
}

.hero-text p{
    margin:25px 0;
    color:#aaa;
    font-size:16px;
}

.hero-text button{
    padding:14px 35px;
    background:#b4f000;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.hero-text button:hover{
    transform:scale(1.05);
    box-shadow:0 0 25px #b4f000;
}

/* ================= HERO IMAGE ================= */

.hero-image{
    position:relative;
}

.hero-image img{
    width:500px;
    max-width:100%;
    filter:drop-shadow(0 0 60px rgba(180,240,0,0.6));
    animation:float 4s ease-in-out infinite alternate,
              fadeIn 2s ease forwards;
    transition:0.4s;
}

.hero-image img:hover{
    transform:scale(1.05);
    filter:drop-shadow(0 0 80px rgba(180,240,0,0.9));
}

.hero-image::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
    filter:blur(100px);
    opacity:0.4;
}

/* ================= ANIMATIONS ================= */

@keyframes float{
    from{ transform:translateY(0px);}
    to{ transform:translateY(-20px);}
}

@keyframes fadeIn{
    from{ opacity:0; transform:translateY(40px);}
    to{ opacity:1; transform:translateY(0);}
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    nav{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#000;
        max-height:0;
        overflow:hidden;
    }

    nav.active{
        max-height:300px;
        padding:20px 0;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .hamburger{
        display:flex;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:150px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .hero-image{
        margin-top:40px;
    }
}

/* ================= About us section  ================= */


/* ================= ABOUT SECTION ================= */

.about-section{
    padding:120px 8%;
    background:linear-gradient(to bottom, #000 60%, #111 100%);
    position:relative;
}

.about-container{
    max-width:1200px;
    margin:auto;
}

.about-tag{
    color:#aaa;
    font-size:14px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;
}

.about-tag .dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

.about-left h2{
    font-size:38px;
    font-weight:800;
    line-height:1.4;
}

.about-left span{
    color:#b4f000;
}

.about-right{
    display:flex;
    align-items:center;
    gap:50px;
    margin-top:50px;
}

.about-image img{
    width:300px;
    border-radius:15px;
    filter:grayscale(10%);
    transition:0.4s;
}

.about-image img:hover{
    transform:scale(1.05);
    box-shadow:0 0 40px rgba(180,240,0,0.5);
}

.about-text{
    max-width:500px;
}

.about-text .highlight{
    font-size:18px;
    margin-bottom:20px;
    color:#ddd;
}

.about-text p{
    color:#aaa;
    line-height:1.6;
    font-size:14px;
}

.about-divider{
    margin-top:80px;
    height:1px;
    background:linear-gradient(to right, transparent, #b4f000, transparent);
}

/* ================= ANIMATION ================= */

.about-section{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1.2s ease forwards;
    animation-delay:0.3s;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .about-left h2{
        font-size:26px;
    }

    .about-right{
        flex-direction:column;
        text-align:center;
    }

    .about-image img{
        width:100%;
        max-width:280px;
    }

    .about-text{
        max-width:100%;
    }

}




/* ================= FEATURES SECTION ================= */

.features-section{
    padding:120px 8%;
    background:#000;
    position:relative;
    overflow:hidden;
}

.features-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    max-width:1300px;
    margin:auto;
}

/* Neon side glow */
.features-section::before{
    content:"";
    position:absolute;
    right:-200px;
    top:50%;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    transform:translateY(-50%);
    filter:blur(120px);
    opacity:0.3;
    z-index:0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    z-index:2;
}

.feature-card{
    transition:0.4s;
}

.feature-card h4{
    font-size:16px;
    margin-bottom:10px;
    color:#fff;
}

.feature-card p{
    font-size:14px;
    color:#aaa;
    line-height:1.6;
}

/* Hover effect */
.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card:hover h4{
    color:#b4f000;
}

.features-image{
    z-index:2;
}

.features-image img{
    width:450px;
    max-width:100%;
    filter:drop-shadow(0 0 60px rgba(180,240,0,0.5));
    transition:0.5s;
}

.features-image img:hover{
    transform:scale(1.05);
    filter:drop-shadow(0 0 80px rgba(180,240,0,0.9));
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .features-container{
        flex-direction:column;
        align-items:center;
        gap:50px;
    }

    /* KEEP 2 COLUMNS ON MOBILE */
    .features-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
        width:100%;
    }

    .feature-card{
        text-align:left;
    }

    .feature-card h4{
        font-size:14px;
    }

    .feature-card p{
        font-size:12px;
    }

    .features-image{
        margin-top:30px;
        display:flex;
        justify-content:center;
    }

    .features-image img{
        width:260px;
    }

}


/* ================= SERVICES SECTION ================= */

.services-section{
    padding:120px 8%;
    background:#000;
    position:relative;
}

.services-header{
    display:flex;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:60px;
}

.services-header .dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

/* ================= DESKTOP VERSION ================= */

.services-desktop{
    display:block;
}

.service-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 0;
    border-top:1px solid #222;
    cursor:pointer;
    transition:0.4s;
}

.service-row:last-child{
    border-bottom:1px solid #222;
}

.service-row h2{
    font-size:32px;
    font-weight:500;
    transition:0.4s;
}

.arrow{
    font-size:28px;
    transition:0.4s;
}

.service-row:hover h2{
    color:#b4f000;
}

.service-row:hover .arrow{
    transform:translateX(10px);
    color:#b4f000;
}

/* ================= MOBILE VERSION ================= */

.services-mobile{
    display:none;
}

.service-card{
    position:relative;
    margin-bottom:30px;
    border-radius:20px;
    overflow:hidden;
}

.service-card img{
    width:100%;
    display:block;
    transition:0.4s;
}

.card-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align:center;
}

.card-overlay h3{
    margin-bottom:15px;
}

.card-overlay button{
    padding:8px 18px;
    background:#b4f000;
    border:none;
    border-radius:20px;
    font-size:12px;
    cursor:pointer;
}

.service-card:hover img{
    transform:scale(1.05);
}

/* ================= RESPONSIVE SWITCH ================= */

@media(max-width:768px){

    .services-desktop{
        display:none;
    }

    .services-mobile{
        display:block;
    }

}


/* ================= COACHES SECTION ================= */

.coaches-section{
    padding:120px 8%;
    background:#000;
    position:relative;
}

.coaches-section::before{
    content:"";
    position:absolute;
    right:-200px;
    top:30%;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(140px);
    opacity:0.25;
    z-index:0;
}

.coaches-header{
    display:flex;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.coaches-header .dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

.coaches-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.coaches-title span{
    color:#b4f000;
}

.coaches-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    position:relative;
    z-index:2;
}

.coach-card{
    text-align:center;
    transition:0.4s;
}

.coach-img{
    overflow:hidden;
    border-radius:15px;
    margin-bottom:20px;
}

.coach-img img{
    width:100%;
    display:block;
    transition:0.5s;
}

.coach-card h3{
    font-size:16px;
    font-weight:500;
}

.coach-card:hover{
    transform:translateY(-10px);
}

.coach-card:hover img{
    transform:scale(1.08);
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .coaches-title{
        font-size:26px;
    }

    .coaches-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

}

/* ================= CLASSES SECTION ================= */

.classes-section{
    padding:120px 8%;
    background:#000;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* glow */
.classes-section::before{
    content:"";
    position:absolute;
    left:-200px;
    bottom:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(120px);
    opacity:0.25;
}

.classes-header{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:20px;
}

.dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

.classes-title{
    font-size:38px;
    margin-bottom:20px;
}

.classes-title span{
    color:#b4f000;
}

.classes-sub{
    max-width:700px;
    margin:auto;
    color:#aaa;
    margin-bottom:60px;
}

/* ===== Slider ===== */

.classes-slider{
    position:relative;
    max-width:1000px;
    margin:auto;
    overflow:hidden;
}

.slider-track{
    display:flex;
    transition:transform 0.6s ease;
}

.class-card{
    min-width:100%;
    background:#111;
    display:flex;
    align-items:center;
    gap:40px;
    padding:40px;
    border-radius:20px;
}

.class-card img{
    width:320px;
    border-radius:15px;
}

.class-content{
    text-align:left;
}

.class-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.class-content p{
    color:#aaa;
    margin-bottom:20px;
}

.class-content button{
    background:#b4f000;
    border:none;
    padding:10px 20px;
    border-radius:20px;
    cursor:pointer;
}

/* arrows */

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#b4f000;
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    font-size:20px;
}

.left{
    left:1px;
}

.right{
    right: 1px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .classes-title{
        font-size:26px;
    }

    .class-card{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .class-card img{
        width:100%;
        max-width:280px;
    }

    .class-content{
        text-align:center;
    }

    .nav-btn{
        width:35px;
        height:35px;
    }

}


/* ================= PLANS SECTION ================= */

.plans-section{
    padding:120px 8%;
    background:#000;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* glow */
.plans-section::before{
    content:"";
    position:absolute;
    left:-200px;
    top:0;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(120px);
    opacity:0.2;
}

.plans-header{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:20px;
}

.dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

.plans-title{
    font-size:38px;
    margin-bottom:60px;
}

.plans-title span{
    color:#b4f000;
}

/* ===== DESKTOP LAYOUT ===== */

.plans-wrapper{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.plans-track{
    display:flex;
    gap:40px;
    transition:transform 0.6s ease;
}

.plan-card{
    background:#111;
    padding:50px 40px;
    border-radius:15px;
    flex:1;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.plan-card h3{
    font-size:30px;
    color:#b4f000;
    letter-spacing:1px;
}

.price{
    font-size:18px;
    margin:15px 0 25px;
}

.plan-card hr{
    border:0;
    border-top:1px solid #333;
    margin-bottom:20px;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:25px 0 35px;
    text-align:center;
}

.plan-card ul li{
    margin-bottom:14px;
    color:#ccc;
}

.plan-card button{
    background:#b4f000;
    border:none;
    padding:10px 20px;
    border-radius:20px;
    cursor:pointer;
}

/* ===== MOBILE SLIDER ===== */

.plan-nav{
    display:none;
}

@media(max-width:768px){

    .plans-title{
        font-size:26px;
    }

    .plans-wrapper{
        overflow:hidden;
    }

    .plans-track{
        gap:0;
    }

    .plan-card{
        min-width:100%;
    }

    .plan-nav{
        display:block;
        position:absolute;
        top:50%;
        transform:translateY(-50%);
        background:#b4f000;
        border:none;
        width:40px;
        height:40px;
        border-radius:50%;
        cursor:pointer;
        z-index:5;
    }

    .plan-nav.left{
        left:10px;
    }

    .plan-nav.right{
        right:10px;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials-section{
    padding:120px 8%;
    background:#000;
    text-align:center;
    position:relative;
}

.testimonials-section::before{
    content:"";
    position:absolute;
    left:-200px;
    top:0;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(120px);
    opacity:0.2;
}

.testimonials-header{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:20px;
}

.dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

.testimonials-title{
    font-size:38px;
    margin-bottom:20px;
}

.testimonials-title span{
    color:#b4f000;
}

.testimonials-sub{
    max-width:600px;
    margin:auto;
    color:#aaa;
    margin-bottom:60px;
}

/* ===== GRID ===== */

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* ===== CARD ===== */

.testimonial-card{
    background:#111;
    padding:30px;
    border-radius:15px;
    text-align:left;
    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#b4f000;
    margin-bottom:15px;
}

.review{
    color:#ccc;
    margin-bottom:20px;
    font-size:14px;
    line-height:1.6;
}

.client{
    display:flex;
    align-items:center;
    gap:12px;
}

.client img{
    width:40px;
    height:40px;
    border-radius:50%;
    object-fit:cover;
}

.client span{
    display:block;
    font-size:12px;
    color:#888;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .testimonials-title{
        font-size:26px;
    }

    .testimonials-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

}


/* ================= CTA SECTION ================= */

.cta-section{
    padding:120px 8%;
    background:#000;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* glow effect */
.cta-section::before{
    content:"";
    position:absolute;
    left:-200px;
    top:0;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(120px);
    opacity:0.2;
}

.cta-section::after{
    content:"";
    position:absolute;
    right:-200px;
    bottom:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(120px);
    opacity:0.2;
}

.cta-header{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:20px;
}

.dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

.cta-title{
    font-size:38px;
    margin-bottom:50px;
}

.cta-title span{
    color:#b4f000;
}

/* ===== FORM ===== */

.cta-form{
    max-width:500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.cta-form input{
    padding:18px 20px;
    border-radius:30px;
    border:none;
    background:#111;
    color:#fff;
    outline:none;
    font-size:14px;
    transition:0.3s ease;
}

.cta-form input:focus{
    box-shadow:0 0 15px rgba(180,240,0,0.6);
}

.cta-form button{
    background:#b4f000;
    border:none;
    padding:12px 25px;
    border-radius:25px;
    cursor:pointer;
    font-weight:bold;
    width:150px;
    align-self:flex-start;
    transition:0.3s ease;
}

.cta-form button:hover{
    transform:scale(1.05);
}

.form-message{
    margin-top:10px;
    font-size:14px;
    color:#b4f000;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .cta-title{
        font-size:26px;
    }

    .cta-form button{
        width:130px;
    }

}




/* ================= COACHES V2 ================= */

.coaches-v2{
    padding:120px 8%;
    background:#000;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.coaches-v2::before{
    content:"";
    position:absolute;
    left:-200px;
    top:0;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(120px);
    opacity:0.2;
}

.coaches-label{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:20px;
}

.dot{
    width:8px;
    height:8px;
    background:#b4f000;
    border-radius:50%;
}

.coaches-heading{
    font-size:38px;
    margin-bottom:20px;
}

.coaches-heading span{
    color:#b4f000;
}

.coaches-sub{
    max-width:600px;
    margin:auto;
    color:#aaa;
    margin-bottom:60px;
}

/* ===== DESKTOP GRID ===== */

.coaches-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.coach-card{
    background:#111;
    padding:25px;
    border-radius:15px;
    transition:0.4s ease;
}

.coach-card img{
    width:100%;
    border-radius:12px;
    margin-bottom:20px;
}

.coach-info h3{
    font-size:18px;
    margin-bottom:8px;
}

.coach-info p{
    color:#b4f000;
    margin-bottom:6px;
}

.coach-info span{
    font-size:13px;
    color:#aaa;
}

.coach-card:hover{
    transform:translateY(-8px);
}

/* ===== MOBILE VERSION ===== */

@media(max-width:768px){

    .coaches-heading{
        font-size:26px;
    }

    .coaches-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .coach-card{
        display:flex;
        align-items:center;
        gap:15px;
        text-align:left;
    }

    .coach-card img{
        width:90px;
        height:90px;
        object-fit:cover;
        margin:0;
    }

    .coach-info h3{
        font-size:14px;
    }

    .coach-info span{
        font-size:12px;
    }

}


/* ================= FOOTER ================= */

.main-footer{
    background:#0a0a0a;
    padding:80px 8% 30px;
    color:#aaa;
    position:relative;
    overflow:hidden;
}

/* subtle glow */
.main-footer::before{
    content:"";
    position:absolute;
    right:-200px;
    bottom:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#b4f000 0%, transparent 70%);
    filter:blur(120px);
    opacity:0.15;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    margin-bottom:60px;
}

.footer-col h4{
    color:#fff;
    margin-bottom:20px;
}

.footer-logo{
    color:#b4f000;
    margin-bottom:15px;
}

.footer-logo span{
    color:#fff;
}

.footer-desc{
    margin-bottom:20px;
    line-height:1.6;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#aaa;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#b4f000;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social-icons a{
    text-decoration:none;
    color:#aaa;
    font-size:14px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#b4f000;
}

/* Newsletter */

.newsletter-form{
    display:flex;
    margin-top:15px;
}

.newsletter-form input{
    flex:1;
    padding:12px 15px;
    border-radius:25px 0 0 25px;
    border:none;
    background:#111;
    color:#fff;
    outline:none;
}

.newsletter-form button{
    padding:12px 20px;
    border:none;
    background:#b4f000;
    border-radius:0 25px 25px 0;
    cursor:pointer;
}

.newsletter-message{
    margin-top:10px;
    font-size:13px;
    color:#b4f000;
}

/* Bottom bar */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #222;
    padding-top:20px;
    font-size:14px;
}

.legal-links{
    display:flex;
    gap:20px;
}

.legal-links a{
    text-decoration:none;
    color:#aaa;
    transition:0.3s;
}

.legal-links a:hover{
    color:#b4f000;
}

/* Mobile */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media(max-width:600px){

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}

html {
    scroll-behavior: smooth;
}