body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.main-menu {
    background-color: white;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.main-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    position: relative;
}

.menu-item {
    padding: 15px;
    
}

.menu-item a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px;
    display: inline-block;
    position: relative;
}

.menu-item a .arrow {
    margin-left: 8px;
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-item:hover .arrow {
    transform: translateY(-50%) rotate(-135deg); /* Animation for the arrow */
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInSlideDown 0.5s ease forwards;
}

.menu-item:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust the number of columns */
    gap: 20px; /* Space between columns */
}

.dropdown-content .column {
    margin-bottom: 15px;
}

.dropdown-content a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.dropdown-content p {
    color: gray;
    font-size: 14px;
}

.dropdown .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.dropdown .social-icons a {
    color: black;
    font-size: 20px;
    text-decoration: none;
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


