


*{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

    

.top{
    background-color: rgb(88, 255, 227);
    color: black;
    border-radius: 50%;
    height: 32px;
    width: 30px;
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 69;
    margin: 20px;
}



#header{
    background-color: rgb(0, 0, 0);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 40;
}

#header img{
    width: 100px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#header ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px; 
}

#header ul a{
    padding: 5%;
    list-style-type: none;
    color: white;
    text-decoration: none;
    width: 100px;
    text-align: center;
    padding: 5px 2px;
    border-radius: 10px;
    margin: 15px 10px 15px 0;
    transition: all 0.3s ease;
}

#header ul a:hover{
    background: whitesmoke;
    color: black;
    box-shadow: 0 3px 10px white;
    
}

.account a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid whitesmoke;
    border-radius: 50%;
    font-size: 15px;
    color: white;
    text-decoration: none;
    margin: 15px 10px 15px 0;
    position: relative;
    outline: none;
    transition: all 0.3s ease;
}

.account a:hover {
    background: whitesmoke;
    color: black;
    box-shadow: 0 0 20px white ;
}

.sec4{
    background-color: black;
    height: auto;
}

.par4{
    color: whitesmoke;
}

.par4 a{
    color: white;
    text-decoration: none;
    list-style: none;
    margin: 15px 10px 15px 0;
}


footer {
    margin-top: auto;
  }


/* Responsive for large tablets and smaller (max-width: 1024px) */
@media (max-width: 1024px) {
    #header ul {
        gap: 5px;
    }
    #header img {
        width: 80px;
        height: 60px;
    }
    #header ul a {
        width: auto;
        padding: 8px;
        font-size: 14px;
    }

    #carone {
        height: 70vh;
    }

    #par1 .col-8 .h2,
    #par2 .col-8 .h2,
    .blog1 h2,
    .blog1 h3 {
        font-size: 1.8em;
    }

    .blog2 .image1, .blog2 .image2, .blog2 .image3 {
        height: 250px;
    }
}

/* Responsive for tablets and smaller (max-width: 768px) */
@media (max-width: 768px) {
    #header ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .top {
        height: 25px;
        width: 25px;
        margin: 10px;
    }

    #par2 {
        height: 50vh;
        background-position: center;
    }

    .blog1 h2, .blog1 h3 {
        font-size: 1.5em;
        padding: 10px;
    }

    .blog2 .image1, .blog2 .image2, .blog2 .image3 {
        height: 200px;
    }

    .text-con {
        font-size: 14px;
        margin-top: 30px;
    }

    #sec1 {
        padding: 20px;
    }

    .bt {
        width: 150px;
        font-size: 14px;
    }
}

/* Responsive for mobile phones (max-width: 576px) */
@media (max-width: 576px) {
    #header img {
        width: 60px;
        height: 50px;
    }

    #header ul a {
        font-size: 12px;
        width: 90px;
        padding: 5px;
    }

    #carone {
        height: 50vh;
    }

    .blog1 h2, .blog1 h3 {
        font-size: 1.2em;
    }

    .blog2 .image1, .blog2 .image2, .blog2 .image3 {
        height: 150px;
    }

    .text-con {
        font-size: 12px;
    }

    .bt {
        width: 120px;
        font-size: 12px;
        height: auto;
    }

    #sec1 {
        padding: 10px;
    }
}

/*
.active{
    background-color: whitesmoke;
    color: black;
    font-weight: bold;
}
    */