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

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

.footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  
}

.custom-footer {
    position: relative;
    width: 100%;
    background: #1a1f71; /* Adjusted color */
    min-height: 350px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.custom-logo {
    display: flex;
    align-items: center;
}

.custom-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}

.social-icons,
.navigation-menu {
    position: relative;
    display: flex;
    bottom: 4rem;
    left: 15rem;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.social-item,
.menu-item {
    list-style: none;
}

.social-link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

.social-link:hover {
    transform: translateY(-10px);
}

.menu-link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
}

.menu-link:hover {
    opacity: 1;
}
.custom-footer{
    color: #2128BF;

}

.custom-footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}



.contact-btn {
    background-color: #fff;
    color: #1a1f71;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
    background-color: #1a1f71;
    color: #fff;
}
.footer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    color: #fff;
    text-align: center;
}

.footer-details > div {
    flex: 1;
    padding: 0 10px;
}

.footer-details div:not(:last-child) {
    border-right: 1px solid #fff;
}

.footer-details p {
    margin: 5px 0;
    font-size: 0.9rem;
}

@keyframes animateWaves {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-position-x: 0px;
    }
}

@keyframes animate {
    0% {
        background-position-x: -1000px;
    }
    100% {
        background-position-x: 0px;
    }
}

@media (max-width: 600px) {
    .custom-logo img {
        position: relative;
        bottom: 40px;
        width: 80px;
        height: 80px;
    }
    .social-icons,
    .navigation-menu {
        position: relative;
        display: flex;
        bottom: 2rem;
        left: 0;     
    }
    .social-link {
        font-size: 1.5rem;
    }
    
    .menu-link {
        font-size: 0.9rem;
    }
    .footer-details div:not(:last-child) {
        border-right: none;
    }
    .footer-details {
        flex-direction: column;
    }

    .footer-details > div {
        border-right: none;
        margin-bottom: 10px;
    }
}
@media (max-width: 880px) and (min-width: 601px) {
    .custom-logo img {
        position: relative;
        bottom: 40px;
        width: 80px;
        height: 80px;
    }
    .social-icons,
    .navigation-menu {
        position: relative;
        display: flex;
        left: 1rem;
        flex-wrap: wrap;
    }
}

.custom-footer {
    position: relative;
    padding: 20px;
  }
  
  .button-container {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .follow-btn {
    background-color: #ffffff;
    border: none;
    color: #1A1F71;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .follow-btn:hover {
    background-color: #1A1F71;
    color:white;
  }