body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Instrument Sans";
}

/*Prakash*/
h1 {
  font-size: 72px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.13;
}

.tac {
  text-align: center;
}
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Prakash*/

/* Navbar Area */
.navbar-area {
  top: 0;
  z-index: 1000;
}

/* Glass look background */
.bg-opacity-50 {
  backdrop-filter: blur(10px);
}

/* Brand */
.navbar-brand img {
  object-fit: contain;
  transition: transform 0.3s ease;
}
/* Navbar links */
.navbar-nav .nav-link {
  color: white;
  font-size: 18px;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #0dcaf0;
}

/* Collapse animation */
.navbar-collapse.collapse.show {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toggler */
.navbar-toggler {
  border: none;
  background: none;
}
.navbar-toggler-icon {
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' viewBox='0 0 30 30'%3E%3Cpath d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Toggle open state (cross icon) */
.navbar-toggler.open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' viewBox='0 0 30 30'%3E%3Cpath d='M6 6L24 24M6 24L24 6'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

/* Collapsed background (mobile menu) */
.navbar-collapse {
  /* background: rgba(0, 0, 0, 0.95); */
  border-radius: 8px;
  padding: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-brand img {
    width: 140px;
    height: auto;
  }

  .d-lg-flex {
    display: none !important;
  }

  /* Keep background image visible under navbar */
  .navbar {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(6px);
  }
}

@media (max-width: 600px) {
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
}

/* Navbar Ends   */



/* Footer Starts  */
