@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;500&family=Poppins:wght@300;400;600;900&display=swap');
@import "colors.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #d5d1d6 #f8f7f7;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 11px;
    height: 7px;
}

*::-webkit-scrollbar-track {
    background: #f8f7f7;
}

*::-webkit-scrollbar-thumb {
    background-color: #d5d1d6;
    border-radius: 11px;
    border: -2px solid #f8f7f7;
}

a{
    text-decoration: none;
    color: var(--secd-bg-black);
}

header {
    position: relative;
    z-index: 1111;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.header-box {
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 60px;
}

.logo {
    background-color: var(--secd-bg-black);
    border-radius: 7px;
    padding: 5px 20px;
    position: relative;
    /* box-shadow: 0 0 6px rgba(0, 0, 0, 0.1); */

}

.logo h2 {
    color: white;
    font-weight: 400;
}

.logo h2 span {
    font-weight: 600;
    font-size: 28px;
    color: rgb(47, 199, 115);
}

.logo h2 i {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: var(--secondry);
}

.header-nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin-right: 60px;
}

.header-nav ul li {
    margin-right: 30px;
}

.header-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.header-nav .buttons .btn-nav {
    background: var(--secondry);
}

.btn {
    background: var(--secondry);
    padding: 10px 20px;
    border-radius: 7px;
    border: none;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: .5s;
    border: 1px solid var(--secd-bg-green);
}

.btn:hover {
    transform: scale(1.03);

}

.btn a {
    color: white;
}

/* footer css start */

footer {
    background-color: var(--secd-bg-black);
    padding: 70px;
    display: flex;
}

footer .outro-web {
    flex-basis: 40%;
}

.outro {
    width: 350px;
}

.outro .logo {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

.outro .text {
    color: white;
    margin-bottom: 30px;
}

.outro .social-links {
    display: flex;
    list-style: none;
}

.outro .social-links img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    filter: invert(100%);
}

.outro .social-links img:hover {
    filter: invert(50%);
}

footer .links-footer {
    flex-basis: 60%;
    display: flex;
    justify-content: space-between;
}

.links-footer .link1 h2,
.links-footer .link2 h2,
.links-footer .link3 h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 30px;
}

.links-footer .link1 ul li,
.links-footer .link2 ul li,
.links-footer .link3 ul li {
    list-style: none;
    margin-bottom: 20px;
}

.links-footer .link1 ul li a,
.links-footer .link2 ul li a,
.links-footer .link3 ul li a {
    color: rgba(255, 255, 255, 0.6);

}
@media(max-width:1024px){
    .header-box{
        margin: 0 30px;
    }
    .header-nav ul{
        margin-right: 10px;
    }
    .header-nav ul li{
        margin-right: 15px;
    }
    .header-nav ul li a{
        font-size: 14px;
    }
    .header-nav .buttons .btn-nav{
        font-size: 14px;
        padding:7px 14px;
    }
    .logo h2,.logo h2 span{
        font-size: 18px;
    }
    header{
        height: 55px;
    }
    footer{
        padding: 30px;
    }
    .outro {
        width: 250px;
    }
    .outro .text p{
        font-size: 14px;
    }
    .links-footer .link1 h2, .links-footer .link2 h2, .links-footer .link3 h2{
        font-size: 18px;
    }
    .links-footer .link1 ul li a, .links-footer .link2 ul li a, .links-footer .link3 ul li a{
        font-size: 14px;
    }
}
@media(max-width:450px){
    p{
        font-size: 14px;
    }
    .header-box .header-nav .buttons{
        display: none;
    }
    .header-box{
        margin: 0 10px;
        padding: 10px 0;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }
    header{
        height: 80px;
    }
    footer .links-footer{
        display: none;
    }
    footer .outro-web{
        flex-basis: 100%;
    }
    .outro {
        width: 90%;
    }
    .header-nav ul{
        margin-right: 0;
    }
}
@media(max-width:320px){
    .header-nav ul li{
        margin-right: 8px;
    }
    .header-nav ul li a{
        font-size: 13px;
    }
}