 /* Navbar styling */
    .navbar {
      background-color: #000;
    }

    .navbar .nav-link,
    .navbar .navbar-brand {
      color: #fff !important;
    }

    .navbar .nav-link:hover,
    .navbar .dropdown-item:hover {
      color: #ffc107 !important;
    }

    /* Dropdown animation */
    .dropdown-menu {
      display: block;
      opacity: 0;
      transform: translateY(10px);
      visibility: hidden;
      transition: opacity 300ms ease, transform 300ms ease;
    }

    .dropdown-menu.show {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }
.navbar .nav-link.active {
    color: #ffc107 !important;
    font-weight: bold;
    border-bottom: 2px solid #ffc107;
  }

.header {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  width:100%;
}

.header h1 span {
  color: #ffc107;
} 
  
section{
	padding-top:80px;
}
section h2{
	color:#832be7;
}
section h2 span{
	color:#d16a5a;
}
	.card {
		background-color: #f8f9fa;
	}
	.price {
		text-decoration: line-through;
		margin-right: 10px;
		color: red;
	}
	.navbar {
		position: sticky;
		top: 0;
		z-index: 1020;
		width: 100%;
		
	}
	
	.facility-card {
		transition: transform 0.3s ease-in-out;
	}
	.facility-card:hover {
		transform: translateY(-5px);
	}
	
	ul.nostyle{
		list-style-type: none;
	}
		
.btnreg{
	margin-right:8px;
}	