* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Push footer to the bottom */
  font-family: arial, sans-serif;
  background-color: rgb(94, 94, 94);
  color: white;
  line-height: 1.6;
  padding: 0 10px;
  font-size: 20px;
}
/*PRELOADER*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0d0d, #1e1e1e);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: orangered;
  transition: all 0.5s ease;
}
header {
  display: flex;
  height: 50px;
  background: radial-gradient(circle, orange, yellow);
  padding: 0 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 10px;
  border-radius: 8px;
  height: 60px;
  max-height: 75px;
}
/*MAIN ELEMENT*/
main {
  flex: 1;
  animation: slideup 2s ease;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 2px 30px 2px rgb(0, 0, 0);
}
     /*LOADER ANIMATION*/
.loadBar {
  background: rgba(255, 217, 111, 0.9);
  width: 190px;
  height: 4px;
  overflow-x: hidden;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
.loadLine,
.loadBar {
  border-radius: 4px;
}
.loadLine {
  background: orangered;
  height: 4px;
  width: 100px;
  animation: movingLine 0.9s alternate infinite;
}
@keyframes movingLine {
  from {
    transform: translateX(-100px);
    width: 20px;
  }
  to {
    transform: translateX(200px);
  }
}
#preloader h1 {
  animation: slideIn 4s ease;
}
@keyframes  slideIn{
from {
  transform: translateX(-100px);
}
to {
  transform: translateX(0);
}
}
/*SLIDEUP AND FADEIN ANIMATION FOR MAIN ELEMENT*/
@keyframes slideup {
  from {
    opacity: 0;
    margin: 100px auto;
  }
  to {
    opacity: 1;
    margin: 20px auto;
  }
}
a {
  text-decoration: none;
  color: orangered;
}

a:hover {
  text-decoration: underline;
}
.upperNavContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
/*USER PROFILE LINK*/
a.userProfileLink {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
/*USER PROFILE IMAGE STYLE*/
a .profileImg {
  width: 50px;
  height: 50px;
  margin-top: 4px;
}
a.userProfileLink span {
  color: beige;
  font-size: 10px;
  margin: 0;
}
.social-icons a {
  color: white;
  font-size: 28px;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #e69500;
}
#scybudApps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
#scybudApps a {
  text-decoration: none;
}
#scybudApps .container {
  display: flex;
  flex-direction: column; /* FIXED HERE */
  align-items: center;
  justify-content: center;
}
#scybudApps a span {
  margin-top: 5px;
  color: #f1f1f1;
  font-size: 12px;
}
#scybudApps .container img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background-color: whitesmoke;
}
#scybudApps img:hover {
  transform: scale(1.15);
}

footer {
  text-align: center;
  margin-top: 30px;
  color: whitesmoke;
  box-shadow: 0 0 20px 2px rgb(190, 190, 190);
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 14px;
  height: auto;
  width: auto;
}
