/* Reset some default browser styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

header h1 {
    font-size: 2rem;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}

/* Sections */
section {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 1px;
    padding-left: 0px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#progress{
    background-color: aqua;
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#progress-value{
    display:block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #f7f0f0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 40px;
    color: #001a2e;
}


/*logo*/
.plogo ul{
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}

#plogo{
    display: grid;
    column-gap: 0px;
    overflow: auto;
    row-gap: 1px;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto auto auto auto;
}

#partners img{
    object-position: left top;
    width: 230px;
    height: 250px;

}

.members ul{
    padding: 5px;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.members{
    display: grid;
    column-gap: 10px;
    overflow: auto;
    row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto auto auto auto;
}

#people img{
    width: 190px;
    height: 200px;
}


#demo {
    text-align: center;
    font-size: 70px;
    margin-top: 0px;
  }
h4{
    text-align: center;   
}
  
td {
    padding: 0 20px;
}


.counter {
    background-color: #def1ef;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px rgb(255, 247, 247);
    max-width: 300px;
    max-height: 120px;
    margin: 20px auto;
}

h3 {
    color: rgb(0, 0, 0);
}

.counter p {
    color: #661;
    margin-top: 10px;
}

#visitorCount {
    font-size: 40px;
    color: #333;
    margin-top: 10px;
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-family: sans-serif;
}
@keyframes blinker {
    60% {
        opacity: 0;
    }
}