.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 {

    width: 100%;
    height: 100px;
    background-color: #050A30;
    border-color: #050A30;
    margin: 1px;
    border-radius: 10px;



}

.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: 3.2rem;
    font-family: 'Segoe UI', 'Gill Sans', Calibri, sans-serif;
    letter-spacing: 1px;
    margin-top: 2%;
    margin-bottom: 0.5%;
    color: #050A30;
}

h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    margin: 20px auto;
    width: 80%;
}

.divider {
    width: 20%;
    height: 10px;
    background: linear-gradient(to right, #050A30, #4da3ff);
    margin: 1% auto;
    border-radius: 10px;
}


.InfoDiv {
    background: linear-gradient(135deg, #8dc711, #b7e44b);
    width: 80%;
    margin: 1% auto;
    padding: 1% 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.InfoDiv:hover {
    transform: translateY(-10%);
}


.H2Div {
    font-size: 1.6rem;
    font-weight: 600;
    color: #050A30;
    margin: 0;
}


.webinfo {
    margin-left: 30%;
    font-size: 25px;
    display: none;

}


.ACSinfo {
    margin-left: 30%;
    font-size: 25px;
    display: none;

}

.appinfo {
    margin-left: 30%;
    font-size: 25px;
    display: none;

}

.webbtn,
.ACSbtn,
.appbtn {
    background-color: #050A30;
    color: white;
    border: none;
    padding: 1% 2%;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.webbtn:hover,
.ACSbtn:hover,
.appbtn:hover {
    background-color: white;
    color: #050A30;
    box-shadow: 0% 2% 10% rgba(0, 0, 0, 0.2);
}


.webinfo b,
.ACSinfo b,
.appinfo b {
    font-weight: 500;
}

.info-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    margin-left: 20%;
}

.info-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 26px;
}

.info-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8dc711;
    font-weight: bold;
}

/*.
.info-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8dc711;
    font-weight: bold;
}

webinfo b::before,
.ACSinfo b::before,
.appinfo b::before {
    content: "✔ ";
    color: #8dc711;
}