body {
  font-family: Merriweather;
}
.main-content {
  padding-bottom: 60px; /* Matches footer height */
}
.nav-link {
  color: azure;
  font-size: large;
  font-weight: bold;
  padding-top: 12px;
}
.nav-link.active {
  color: rgb(187, 224, 62) !important; /* Replace with your desired color */
}
.nav-link:hover {
  /* background-color: rgb(35, 215, 228); */
  background: radial-gradient(circle, #3aad00, #11eb23);
  color: rgb(224, 231, 233);
  border-radius: 4px;
  border-color: rgb(245, 245, 245);
}
/* .dropdown-options a:hover {
  background: radial-gradient(circle, #55d332, #050207);
  color: #ffffff;
} */
.logo {
  margin-left: 15px;
  height: 42px;
  width: 42px;
}
.nav-pageheading {
  position: absolute;
  left: 80px; /* Adjust the value as needed */
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  /* font-family: ; */
  padding-top: 8px;
}

.navbar {
  position: relative;
}
.bg-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
}

/* .crs-img {
  height: 620px;
  width: 100%;
  object-fit: cover;
} */
form.login {
  border-radius: 10px;
}
.login-container {
  margin-top: 50px;
  margin-right: 50px;
  margin-left: 50px;
  /* height: 1200px; */
  /* margin-bottom: 80%; */
  /* padding-bottom: 1%; */
  /* height: 400px;
   */
  /* border: 2px solid green; */
}
.login {
  background-color: rgb(255, 255, 255);
  padding: 5%;
  text-decoration: none;
}
.quote {
  color: azure;
  font-weight: bold;
  font-size: xx-large;
  font-family: "Courier New", Courier, monospace;
}
.login-password {
  text-decoration: none;
}
body {
  /* background-color: goldenrod; */
  background: radial-gradient(circle, #33eb05, #050207);
}
.login-pagechange {
  text-decoration: none;
}
.login-btn {
  border-radius: 8px;
  border-color: rgb(9, 153, 4);
  display: flex; /* Use Flexbox for alignment */
  align-items: center; /* Align items vertically */
  justify-content: center; /* Center content horizontally */
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.login-btn svg {
  width: 1rem; /* Adjust icon size */
  height: 1rem;
  flex-shrink: 0; /* Prevent the icon from shrinking */
}
.login-btn:hover {
  background: radial-gradient(circle, #33eb05, #050207);
  /* background-color: blue; */
  color: azure;
  transform: scale(1.01);
}
.contact-form {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
}

footer {
  position: static;
  bottom: 0;
  width: 100%;
}
.footer-item a {
  text-decoration: none;
  color: azure;
}
/* home page */
@keyframes hoverAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1.03);
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-300px);
  }
  to {
    transform: translateX(0);
  }
}
.left-right {
  animation-name: slideInLeft;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;

  /* transform: translateX(-150px); */
}
@keyframes slideInRight {
  from {
    transform: translateX(300px);
  }
  to {
    transform: translateX(0);
  }
}
.right-left {
  animation-name: slideInRight;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;

  /* transform: translateX(-150px); */
}
@keyframes slideToTop {
  from {
    transform: translateY(300px);
  }
  to {
    transform: translateY(0);
  }
}
.bottom-top {
  animation-name: slideToTop;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;

  /* transform: translateX(-150px); */
}
@keyframes slideToTop {
  from {
    transform: translateY(300px);
  }
  to {
    transform: translateY(0);
  }
}
.bottom-top-2 {
  animation-name: slideToTop;
  animation-duration: 2.4s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;

  /* transform: translateX(-150px); */
}
.crs-home {
  padding: 10px 50px 20px 50px;
  margin: 10px 100px 20px 100px;
}
.crs-img {
  height: 800px;
  width: 90%;
}
@media (max-width: 767px) {
  .crs-img {
    height: 500px;
    width: 100%;
  }
  .crs-home {
    padding: 10px 10px 20px 10px;
    margin: 10px 10px 20px 10px;
  }
}
.bottom-top-2 a {
  text-decoration: none;
  color: aliceblue;
}
/* gallery 
.cards-gallery {
  padding-top: 20px;
  padding-right: 10%;
  padding-bottom: 10%;
  padding-left: 30%;
  margin-left: 10%;
} 
.cards-gallery-flex {
  margin-left: auto;
  margin-right: auto;
} */
.cards-btn {
  border-radius: 8px;
  border-width: 2px;
  border-color: rgb(9, 153, 4);
  display: flex; /* Use Flexbox for alignment */
  align-items: center; /* Align items vertically */
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.cards-btn:hover {
  background: radial-gradient(circle, #33eb05, #050207);
  /* background-color: blue; */
  color: azure;
  transform: scale(1.01);
}
.cards-gallery-anim {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cards-gallery-anim:hover {
  transform: scale(1.05); /* Slightly enlarge the card */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Increase shadow */
}

/* art */
.art-bg {
  background-color: rgb(212, 228, 157);
}
.art-border {
  border-color: #3aad00;
  border: 2px dotted;
}
.gal-img {
  width: 225px;
  height: 225px;
  object-fit: cover; /* Ensures the image maintains its aspect ratio while covering the given dimensions */
}
