@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
  font-family: "Manrope", sans-serif;
  /* box-sizing: border-box; */
  /* overflow-x: hidden; */
  /* width: 100%; */
}

.navbar p {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

#navbarTogglerDemo02 ul li a {
  margin: 20px;
  font-weight: 600;
}

#navbarTogglerDemo02 ul li a.active {
  color: #4a6ddf;
}

.btn a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.underlined {
  position: relative;
  display: inline-block !important;
}

.underlined::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  height: 7px;
  width: 100% !important;
  border: solid 8px #ffe142;
  border-color: #ffe142 transparent transparent transparent;
  border-radius: 50%;
}

/* footer */

/* footer { */
/* background-color: #0b0b49;    } */
/* .headings{ */
/* margin-left: 55px; */
/* } */
/* .linkss h5, .infoo h5{
      font-weight: 500;
      font-size: 18px;
      line-height: 24px;
    } */

#quick-links ul li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}

#quick-links ul li {
  list-style: none;
  margin: 15px;
}

#quick-links ul li i {
  font-size: 1rem;
  color: rgb(223, 191, 10);
}

#quick-links ul li i {
  margin: 10px;
}

#information ul li i {
  margin-right: 10px;
}

#information ul li {
  list-style: none;
}

#information ul li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}

#information ul li {
  margin: 15px;
}

#information ul li i {
  color: rgb(223, 191, 10);
}

.image-container {
  overflow: hidden;
}

.image-container img {
  transition: transform 900ms;
  object-fit: cover;
}

.image-container:hover img {
  transform: scale(1.2);
}

@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    /* Adjust the value for desired movement */
  }
}

.animate_heartBeat {
  animation: moveUpDown 3s ease infinite;
  /* Adjust the duration and easing as needed */
}

a {
  position: relative;
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
}

a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffe142;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}

a:hover::before {
  transform: scaleX(1);
}

/* footer */

footer {
  background-color: #0b0b49;
}

/* .headings{
      margin-left: 55px;
    } */
.linkss h5,
.infoo h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

/* footer */
#quick-links p a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}

/* #quick-links p a:hover {
      text-decoration: underline rgb(219, 180, 6);  
    } */

#quick-links p i {
  font-size: 1rem;
  color: rgb(223, 191, 10);
}

.line-height p {
  line-height: 35px;
}

.heghtline span {
  line-height: 30px;
}

.mail p {
  margin-left: 5px;
  margin-top: 2px;
}

.info {
  position: relative;
}

.info li {
  display: grid;
  grid-template-columns: 10px 1fr;
  margin-bottom: 16px;
}

.info li span:nth-child(1) {
  color: #e6b20a;
  font-size: 19px;
  margin-left: -18px;
  margin-top: 3px;
}

.info li span {
  color: #fff;
}

.info a {
  color: white;
  text-decoration: none;
}

.download-btn {
  background-color: white;
  color: #000;
  padding: 0.5rem 3rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #f1c73b;
}

.mission p {
  cursor: pointer;
}

/* Card hover effect */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.125);
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #ffe142;
}

/* Image container for zoom effect */
.image-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  transition: transform 0.5s ease;
}

.card-hover:hover .image-container img {
  transform: scale(1.15);
}

/* Enhance card title on hover */
.card-hover:hover .card-title {
  color: #4a6ddf;
  font-weight: 600;
}

.dropdown-item {
  width: auto;
  padding: 0%;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.sticky-blink {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 180px;
  z-index: 9999;
  /* Highest priority */
  /* animation: blink 1s infinite alternate; */
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

/* loading page */
.highlight-glow {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-shadow: 0 0 10px #ffd54f, 0 0 20px #ffc107, 0 0 100px #ffc107;
  animation: glow 0.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #ffd54f, 0 0 10px #ffc107, 0 0 20px #ffc107;
  }
  to {
    text-shadow: 0 0 20px #ffd54f, 0 0 40px #ffc107, 0 0 60px #ffc107;
    background-color: #ffc107;
  }
}

.border-animate {
  border: 5px solid #ff6b6b;
  border-radius: 32px;
  animation: borderBlink 1s ease-in-out infinite;
}

@keyframes borderBlink {
  0% {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px #ff6b6b;
  }
  50% {
    border-color: #f7b731;
    box-shadow: 0 0 20px #f7b731;
  }
  100% {
    border-color: #4cd137;
    box-shadow: 0 0 10px #4cd137;
  }
}
