* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: whitesmoke;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}
/* display none when preeloading show */
#content {
  display: none;
}

/* preloader styling */
.loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after {
  position: absolute;
  top: 0;
  content: "";
}

.jimu-primary-loading:before {
  left: -19.992px;
}

.jimu-primary-loading:after {
  left: 19.992px;
  -webkit-animation-delay: 0.32s !important;
  animation-delay: 0.32s !important;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading {
  background: #076fe5;
  -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  width: 13.6px;
  height: 32px;
}

.jimu-primary-loading {
  text-indent: -9999em;
  margin: auto;
  position: absolute;
  right: calc(50% - 6.8px);
  top: calc(50% - 16px);
  -webkit-animation-delay: 0.16s !important;
  animation-delay: 0.16s !important;
}

@-webkit-keyframes loading-keys-app-loading {
  0%,
  80%,
  100% {
    opacity: 0.75;
    box-shadow: 0 0 #076fe5;
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px #076fe5;
    height: 40px;
  }
}

@keyframes loading-keys-app-loading {
  0%,
  80%,
  100% {
    opacity: 0.75;
    box-shadow: 0 0 #076fe5;
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px #076fe5;
    height: 40px;
  }
}

.container {
  margin: 20px 5% 0px 5%;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  /* margin: 20px 100px; */
}
.nav1 {
  min-width: 180px;
  font-size: 20px;
}
.nav2 {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.logo1 a {
  color: #0097e6;
  text-decoration: none;
}
.logo2 {
  color: #fbc531;
}
.anchor {
  color: white;
  text-decoration: none;
}

/* navbar button from uiverse website */
.btn-lgn {
  --primary-color: #0097e6;
  --secondary-color: #fff;
  --hover-color: #fbc531;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 10px 15px;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
}

.btn-lgn .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-lgn .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

.btn-lgn .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

.btn-lgn:hover {
  background-color: var(--hover-color);
  color: black;
}

.btn-lgn:hover .arrow {
  background: var(--secondary-color);
}

.btn-lgn:hover .arrow:before {
  right: 0;
}

@media only screen and (max-width: 450px) {
  .nav1 {
    min-width: 140px;
    font-size: 15px;
  }
  .nav2 {
    column-gap: 10px;
  }

  /* navbar button from uiverse website */
  .btn-lgn {
    padding: 8px 12px;
  }
}

@media only screen and (max-width: 380px) {
  .navbar-container {
    flex-direction: column;
    width: 100%;
  }
  .nav1 {
    justify-content: space-between;
  }
}

/* content start here  */
.main-container {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.section1 {
  width: 50%;
  padding-top: 50px;
}

.tagline {
  font-size: 2.6em;
  color: #0097e6;
}
.pretagline {
  color: #fbc531;
}
.para {
  width: 85%;
  line-height: 1.5;
  text-align: justify;
  font-size: 18px;
  margin-top: 15px;
  color: #2f3640;
  font-family: Arial, Helvetica, sans-serif;
}

.button-main-div {
  margin-top: 25px;
  display: flex;
}
.mainbutton {
  background-color: #0097e6;
  padding: 8px 25px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.mainbutton:hover {
  background-color: #fbc531;
}
.mainbutton2 {
  margin-left: 5px;
  background-color: none;
  padding: 6px 25px;
  border: 2px solid #0097e6;
  border-radius: 5px;
  color: black;
  font-size: 18px;
  cursor: pointer;
}
.mainbutton2:hover {
  background-color: #0097e6;
  color: white;
}
/* section 2 style  */
.section2 {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* image  */
.main-img {
  width: 100%;
  height: 90%;
  border-radius: 50px 0px 50px 0px;
}

.heading {
  font-size: 45px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0097e6;
  height: 120px;
}
@media only screen and (max-width: 700px) {
  .main-container {
    flex-direction: column;
    margin-top: 20px;
    row-gap: 20px;
  }
  .section1 {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .para {
    width: 100%;
    text-align: center;
  }

  /* section 2 style  */
  .section2 {
    width: 100%;
  }
  .heading {
    font-size: 32px;
    height: 100px;
  }
}
@media only screen and (max-width: 420px) {
  .tagline {
    font-size: 1.7em;
  }

  .para {
    font-size: 14px;
  }

  .button-main-div {
    margin-top: 15px;
  }
  .mainbutton {
    padding: 6px 15px;
    font-size: 14px;
  }

  .mainbutton2 {
    padding: 4px 20px;
    font-size: 14px;
  }
  .main-img {
    border-radius: 20px 0px 20px 0px;
  }
  .heading {
    font-size: 28px;
    height: 80px;
  }
}

/* .dashboard and card design  */
.dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  width: 100%;
  justify-content: center;
  padding: 25px 0px 25px 0px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content {
  padding: 15px;
}

.title {
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 10px;
}

.category,
.created-date {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 10px;
}

.description {
  font-size: 1rem;
  color: #444;
  margin: 0 0 15px;
}

.nopostDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#nopost {
  text-align: center;
  font-size: 45px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #0097e6;
  font-weight: 700;
  margin: 15px 0px 25px 0px;
}