@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

body{

    background: #1f242d;

}

a {
    color: #fff;
    text-decoration: none;
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 2%;
    background: url(img/website1.webp);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logo{
    font-size: 2rem;
    font-weight: 700;
}
.navbar .toggle {
    display: none; /* Hide toggle button by default */
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    list-style: none;
    margin-left: 35px;
}
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 5%;
    }
}

.navbar ul li a {
    font-size:  20px;
    font-weight: 500;
    transition: .5s;
}

.navbar ul li:hover a ,
.navbar ul li.active a{
    color: #7cf03d;
}

.home {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 60px 9% 0;
    color: #fff;
   
}
@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }
}

.home-info h1 {
    font-size: 55px;
}
.home-info h2 {
    font-size: 32px;
    margin-top: -10px;
}

.home-info p {
    font-size: 16px;
    margin: 10px 0 25px;
}

.home-info .btn-socials {
    display:flex ;
    align-items: center;

}

.btn {
    display: inline-block;
    padding: 10px, 30px;
    background: #7cf03d;
    border: 2px solid #7cf03d;
    border-radius: 40px;
    box-shadow: 0 0 10px #7cf03d;
    font-size: 16px;
    color: #1f242d;
    font-weight: 600;
    transition: .5s;
}
.btn:hover {
    background: transparent;
    color: #7cf03d;
    box-shadow: none;
}

.links-group {
    margin: right;
    padding-bottom: 50px;
    text-align:left;
    display: inline-block;
    padding: 10px, 30px;
    font-size: 16px;
    color: #1f242d;
    font-weight: 600;
    transition: .5s;

}

.home-info .btn-socials .socials{
    margin-left: 20px;

}
.home-info .btn-socials .socials a {
    display:inline-flex;
    padding: 8px;
    border: 1px solid #7cf03d;
    border-radius: 9%;
    font-size: #7cf03d;
    margin: 0 8px;
    transition: .5s;
}
.home-info .btn-socials .socials a{

    background: #1f242d;
    color: #fff;
    box-shadow: 0 0 4px #1f242d;
}
.home-img .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    overflow: hidden;
    position: relative; /* Needed for absolute positioning of children */
}

.home-img .img-box .img-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #1f242d;
    border-radius: 50%;
    overflow: hidden;
}

.home-img .img-box .img-item img {
    width: 50%;
    height: auto;
    object-fit: cover;
}


/* Optional: Styling for the footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1f242d;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}
/* Responsive styles */
@media (max-width: 320px) {
    .navbar ul {
        display: none; /* Hide by default */
        flex-direction: column; /* Stack vertically */
        position: absolute;
        top: 60px; /* Position below the navbar */
        left: 0;
        right: 0;
        background: #1f242d; /* Match background color */
        padding: 10px 0; /* Add padding for the menu */
    }

    .navbar ul.show {
        display: flex; /* Show when toggled */
    }

    .navbar .toggle {
        display: block; /* Show toggle button on small screens */
    }
    .navbar ul li {
        margin-left: 0; /* Remove margin for vertical stacking */
        text-align: center; /* Center align links */
    }
}



