.footerimg {
    width: 20px;
    left: 50%;
    right: 50%;
    border-color: aliceblue;
    border-style: solid;
    padding: 1px;



}

footer {
    position: relative;
    font-size: 20px;
    background-color: #050A30;
    text-align: center;
    border-color: black;
    border-style: solid;
    margin: 5px;
    padding: 3px;
    font-display: auto;
    -webkit-text-fill-color: white;
    height: 40px;
    border-radius: 10px;

}



.topdiv {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #050A30;
    overflow: hidden;
    border-color: #050A30;
    margin: 1px;
    border-radius: 10px;
    /* important – hides image when off screen */
}

.topimg {

    animation: slideLoop 8s linear infinite;
    width: 95px;
    height: auto;
    overflow: hidden;

}

/* Infinite sliding animation */
@keyframes slideLoop {
    0% {
        transform: translateX(-10%);
        /* start outside left */
    }

    100% {
        transform: translateX(1500%);
        /* move completely to the right */
    }
}

.navbar {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0 30px;
    height: 100%;
}

.navbar li a {
    text-decoration: none;
    color: black;
    font-size: 1.1rem;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar li a:hover {
    background-color: #1b2cc1;
    color: #ffffff;
}

h1 {
    text-align: center;
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;


}

h3 {
    text-align: center;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 5%;
    padding: 3%;
    text-align: center;
}



.box {
    background: linear-gradient(135deg, #8dc711, #b7e44b);
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 2% 4% rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #050A30;
}

.box:hover {
    transform: translateY(-20%);
    box-shadow: 0 2% 4% rgba(0, 0, 0, 0.25);
}

.box h2 {
    margin-bottom: 1%;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.box a {
    display: inline-block;
    margin-top: 5%;
    padding: 3% 5%;
    background-color: #050A30;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.box a:hover {
    background-color: white;
    color: #050A30;
}


.instagram {
    border-top: 6px solid #E1306C;
}

.facebook {
    border-top: 6px solid #1877F2;
}

.whatsapp {
    border-top: 6px solid #25D366;
}


/*
.container {
    display: flex;
    gap: 20px;
    
}



.insta {
    width: 50%;
    background: lightgray;
    padding: 20px;
    border-style: solid;
}

.facebook {

    width: 30%;
    background: lightgray;
    padding: 20px;
    border-style: solid;
}

.whatsapp {
    width: 50%;
    background: lightgray;
    padding: 20px;
    border-style: solid;
}
*/