* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}


.image {
  height: 100px;
  width: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: white;
  border: 1px solid #ddd;
  padding: 20px 0;
}

.indicator {
  border-radius: 50%;
}


.bgImg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 20s linear infinite;
}

.carousel-track img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.About-Us-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: larger;
}

.Certification-Div h5 a {
  text-decoration: none;
  color: black;
}

.Certification-Div h5 a:hover {
  color: black;
}

.cert-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cert-link:hover {
  color: inherit;
}

.error {
    color: red;
    font-size: 13px;
    display: block;
    margin-top: 3px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  input.error-border, textarea.error-border {
    border: 1px solid red;
  }

  
  .custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #222;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  z-index: 9999;
}
a:hover ~ .custom-cursor, button:hover ~ .custom-cursor {
  width: 40px;
  height: 40px;
  border-color: #ff4081;
  background: rgba(255,64,129,0.2);
}
