/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.cdnfonts.com/css/zombies-brainless');
/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
    ---green: #1BB46D;
    ---white: #ffffff;
    ---black: #1F1F5F;
    ---border: #e5e5e5;
    ---paragraph: #919191;
}

/*---------------------Roots-----------------*/



.header {
    position: relative;
    background-color: transparent;
    width: 100%;
    position: fixed;
    z-index: 888;
    top: 0;
    transition: all 0.4s ease;
}

/* Scroll hone ke baad */
.header.scrolled {
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header .container img {
    width: 170px;
}

.header .container .navbar {
    backdrop-filter: blur(15px);
    border: 2px solid #ffffff48;
    background-color: var(---white);
    border-radius: 100px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.192);
}

.header .container .navbar .data a {
    padding: 0px 15px;
    padding-bottom: 24px;
    color: var(---black);
    font-size: 16px;
    font-weight: 600;
}

.header .container .navbar .data {
    padding: 25px 50px;
    border-radius: 100px;
}

.header .container .navbar .data a:hover {
    border-bottom: 3px solid var(---green);
    color: var(---green);
}
.header .container .navbar .data #activelink{
    color: var(---green);
}

.header .container button {
    width: 250px;
    height: 70px;
    background: linear-gradient(90deg, #1BB46D, #016D39);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
    padding-left: 15px;
    font-size: 20px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    color: var(---white);
}

.header .container button i {
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background-color: var(---white);
    display: flex;
    align-items: center;
    color: var(---green);
    justify-content: center;
    font-size: 25px;
    transform: rotate(-40deg);
    transition: transform 0.4s ease;
}

.header .container button:hover {
    box-shadow: 0px 10px 30px #016d39a4;
}

/* 👇 Jab pura button hover ho to icon move kare */
.header .container button:hover i {
    transform: translateX(6px);
}

.header .container .navbar.active {
    left: 0px;
    transition: 1.5s all ease-in-out;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform-origin: 0 0;
}

.header .container .navbar #close {
    font-size: 25px;
    position: absolute;
    color: var(---white);
    cursor: pointer;
    z-index: 20;
    right: 10px;
    top: 10px;
    background-color: var(---green);
    padding: 20px;
    display: none;
    border-radius: 100px;
}

.header .container .right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .container .right #menu {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(---green);
    font-size: 14px;
    background-color: var(---white);
    cursor: pointer;
    margin-right: 10px;
    display: none;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.151);
}

.header .container .right #menu:hover {
    background-color: var(---green);
    border: none;
    color: var(---white);

}





/* media quries */

@media (max-width:1772px) {
    section {
        padding: 20px 100px;
    }
}

@media (max-width:1674px) {
    section {
        padding: 20px 80px;
    }

}

@media (max-width:1590px) {
    section {
        padding: 20px 60px;
    }
}

@media (max-width:1486px) {
    .header .container .navbar .data a {
        padding: 0px 12px;
        padding-bottom: 19px;
        font-size: 16px;
    }

    .header .container .navbar .data {
        padding: 20px 30px;
    }

    .header .container button {
        width: 180px;
        height: 60px;
        padding: 0px 10px;
        padding-left: 15px;
        font-size: 16px;
    }

    .header .container button i {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .header .container img {
        width: 150px;
    }
}

@media (max-width:1390px) {
    section {
        padding: 20px 40px;
    }
}

@media (max-width:1280px) {

    html {
        font-size: 80%;
    }

    section {
        padding: 20px 20px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 15px;
    }

    .header .container .navbar {
        backdrop-filter: none;
        border: none;
        background-color: var(---white);
        border-radius: 0px;
        box-shadow: none;
        position: absolute;
        left: -2000%;
        width: 100%;
        height: 100vh;
        top: 0;
        z-index: 99999;
        transition: 1s all ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .header .container .navbar .data a {
        font-size: 30px;
        line-height: 130px;
        padding-bottom: 0px;
        width: 100%;
        text-align: center;
    }

    .header .container .navbar .data {
        width: 100%;
        margin: 10px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .header .container .navbar #close {
        display: inherit;
    }

    .header .container .right #menu {
        display: inherit;
    }


}

@media (max-width:830px) {

    .header .container button {
        width: 150px;
        height: 50px;
        padding: 0px 10px;
        padding-left: 10px;
        font-size: 14px;
    }

    .header .container button i {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .header .container img {
        width: 120px;
    }


}

@media (max-width:780px) {

    section {
        padding: 20px 10px;
    }
}

@media (max-width:690px) {}

@media (max-width:550px) {
    .uppericon {
        right: 1%;
        bottom: 20%;
        width: 8%;
    }
}

@media (max-width:500px) {}

@media (max-width:450px) {
    .uppericon {
        right: 3%;
        bottom: 8%;
    }

    .header .container button {
        width: 140px;
        height: 45px;
        padding: 0px 10px;
        padding-left: 10px;
        font-size: 12px;
    }

    .header .container img {
        width: 100px;
    }

    .header .container button i {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .header .container .navbar #close {
        font-size: 16px;
        z-index: 20;
        right: 10px;
        top: 10px;
        padding: 15px;
    }

    .header .container .navbar .data {
        padding: 0px 10px;
    }

    .header .container .navbar .data a {
        font-size: 25px;
        line-height: 110px;
        padding-bottom: 0px;
        width: 100%;
        text-align: center;
    }

    .header .container .right #menu {
        width: 35px;
        height: 35px;
        font-size: 12px;
        margin-right: 10px;
    }

}

@media (max-width:400px) {
    .header .container button {
        width: 150px;
        height: 45px;
        padding: 0px 5px;
        padding-left: 15px;
        font-size: 10px;
    }

    .header .container button i {
        width: 35px;
        height: 35px;
        font-size: 25px;
    }
}

@media (max-width:320px) {
    .header .container .navbar .data a {
        font-size: 22px;
        line-height: 110px;
        padding-bottom: 0px;
        width: 100%;
        text-align: center;
    }
}

/* media quries */