.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger .bar {
    width: 30px;
    height: 3px;
    background-color: #a90ff1;
    margin: 5px 0;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Mobile styling */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    .burger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    /* Hamburger Icon Animation */
    .burger.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(13px, 13px);
    }

    .burger.open .bar:nth-child(2) {
        opacity: 0;
    }

    .burger.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


@media screen and (max-width: 768px) {

    /* header Styling */

    header .main {
        display: block;
        /* padding: 110px 40px; */
        /* justify-content: center;
      align-items: center; */
    }

    /* This is a Left */

    .left {
        width: 100%;
        margin-bottom: 70px;
    }

    .left h1 {
        font-size: 25px;
        color: #6228d7;
    }

    .left h2 {
        font-size: 30px;

    }

    .left p {
        font-size: 20px;
        color: rgb(70, 69, 69);
    }


    /* This is a Right */

    .right {
        width: 100%;
    }

    .right img {
        width: 100%;
        /* filter: drop-shadow(0px 0px 30px #6228d7); */
    }

    .padding {
        padding-bottom: 20px;
    }

}

@media screen and (max-width: 480px){
    /* This is a excel-1*/
.excel-1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    
    

}

.excel {
   display: grid;
   grid-template-columns: 12fr;
    gap: 20px;
    margin: 30px;
}

.excel .card {
    width: 300px;
    height: 370px;
    background-color: #fff;
    border: 0.1px solid #6228d7;
    border-radius: 8px;
    cursor: pointer;
    transition: 1s;
}

.excel .card:hover {
    box-shadow: 0 0 10px #a90ff1;
    transition: 1s;
}

.excel .card img {
    width: 90%;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 1s;
}

.excel .card img:hover {
    box-shadow: 0 0 10px #a90ff1;
    transition: all 1s;
}

.excel .card .memes {
    width: 50%;
    border-radius: 50%;
}
}