body {
  font-weight: 400;
  background: #ffffff;
}

.navbar-nav .nav-item .nav-link.active {
  color: white; /* Change this color as per your design */
}

html {
  scroll-behavior: smooth;
}
.navbar {
  background-color: #0B214C;
  height: 15vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.nav-link{
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
}
/* Smooth animation for the collapsible navbar */
.navbar-collapse {
  transition: transform 0.6s ease-in-out; /* Smooth animation */
  border-radius: 10px;
}

/* When the navbar is collapsed, hide it off-screen */

/* When the navbar is expanded, bring it back into view */
.navbar-collapse.collapse.show {
  transform: translateY(0); /* Bring navbar into view */
}

/* Center navbar items in hamburger menu */
@media (max-width: 991px) {
  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the items horizontally */
    width: 100%; /* Ensure the items fill the width of the navbar */
    background-color: rgba(0, 0, 0, 0.758);
  }
  .navbar-collapse.collapse {
    transform: translateY(-100%); /* Move navbar out of view when collapsed */
  }
  
  .navbar-nav .nav-item {
    width: 100%; /* Make each item take the full width */
    text-align: center; /* Center the text within each item */
  }
}

.footer {
  background-color: #0B214C;
}

@media(max-width:991px){
  #heading-on-hero {
    font-size: 2rem; /*laxmi ratna font*/
  }
  .carousel{
    margin-top: 8em;
  }
  .founder-img{
    height: 10vh;
    margin-top: 5em;
    background-size: cover;
    background-position: center;
  }
}

#about-hero-heading {
  font-size: 4rem;
  font-family: "Playfair Display", serif;
}
#about-image {
  width: 100%;
}

#about-article {
  margin-top: 10em;
  margin-bottom: 7em;
}
#article-title{
  font-family: "Italiana", sans-serif;
  font-weight: 400;
}
.founder-img{
  height: 70vh;
  margin-top: 5em;
}
#high-jewel-article {
  margin-top: 7em;
}

.high-jewel-carousel {
  width: 100%;
  margin-top: 4em;
}

.hover-overlay :hover {
  scale: 1.5;
}

#careers-heading {
  color: #012e45;
  font-family: "Italiana", sans-serif;
  font-weight: 500;
}

.btn {
  background: transparent;
  width: 200px;
  position: relative;
  padding: 15px;
  color: #1ecd97;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  border-radius: 4px;
  font-weight: 600;
  overflow: hidden;
  border: 2px solid #1ecd97;
  text-decoration: none;
}

/* In Progress Button */
.btn-progress {
  width: 500px;
  color: transparent;
}

.btn-fill:after {
  content: "";
  background: #1ecd97;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0;
  display: block;
  animation: fill 3.2s linear forwards;
}

/* Button Complete */
.btn-complete {
  padding: 10px;
  width: 50px;
  color: #fff;
  pointer-events: none;
}

.btn-complete:after {
  font-family: FontAwesome;
  content: "";
  color: #fff;
  height: 100%;
  padding-left: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1ecd97;
}

/* Animation */
@keyframes fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero-page{
  margin-top: 10em;
}