.hero-section {
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
  }
  .card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
  }
 body {
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
      background-color: #f8f9fa;
    }
    section {
      padding: 60px 0;
    }
	
.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay: adjust 0.5 */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 90%;
}
.navbar{
	color:white;
}
.enquiry-section {
  background-color: #f8f9fa;
}
.enquiry-section h2 {
  font-weight: 600;
}
.bgwarning{
	background-color:#daeaef;
}
/* Custom class to open submenu to the left */
.show-on-left {
    top: 0;
    left: auto !important;
    right: 100%;
    margin-top: 0;
    margin-right: .1rem;
}
.dropdown-submenu {
    position: relative;
}
/* Main sidebar menu container */


/* Left-opening dropdown menu */
.dropdown-submenu > .dropdown-menu.show-on-left {
    top: 5px;
    left: auto !important;
    right: 100%;
    margin-top: 0;
    margin-right: 0.25rem;
    min-width: 300px;
    padding: 0.5rem 0;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 999;
}
.dropdown-menu.show{
    width:250px;
}
/* Submenu link style */
.dropdown-menu .dropdown-item {
    padding: 10px 16px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.9s, color 0.9s;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #f0f4f8;
    color: #0078d4;
}

/* Arrow indicator for submenus */
.dropdown-submenu > a::after {

    float: right;
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    transition: transform 0.9s ease;
}

/* Rotate arrow when submenu is open (optional) */
.dropdown-submenu:hover > a::after {
    transform: translateX(-2px);
}

/* Submenu level spacing */
.dropdown-submenu > .dropdown-menu .dropdown-submenu > .dropdown-menu {
    right: 100%;
    left: auto !important;
    top: 10px;
}

/* Menu header */
.sidebar-menu h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

/* Top-level menu items */
.sidebar-menu ul {
  list-style: none;
  width: 100%;
  background-color: #ffffff;
  border-right: 1px solid #e0e0e0;
  padding: 0px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 700;
  overflow-y: auto;
  height: auto;
}

.sidebar-menu li {
  position: relative;
}

/* Main links */
.sidebar-menu a {
  display: block;
  padding: 10px 10px 10px 0;
  color: #0078d4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-menu a:hover {
  color: #005a9e;
}

/* Indicator arrows */
.sidebar-menu .has-children > a::after {
  list-style: none;
  float: right;
  font-size: 10px;
  margin-top: 6px;
  transition: transform 0.3s ease;
}

.sidebar-menu .has-children.open > a::after {
  transform: rotate(-180deg);
}

/* Submenus */
.sidebar-menu ul ul {
  display: block;
  padding-left: 15px;
  border-left: 1px dotted #ccc;
  margin-top: 5px;
}

.sidebar-menu .open > ul {
  display: block;
}

/* Nested submenu items */
.sidebar-menu ul ul li a {
  font-size: 15px;
  color: #333;
  padding-left: 10px;
  position: relative;
  list-style: none;
}

.sidebar-menu ul ul li a::before {
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 12px;
  color: #444;
}

/* Hide bullets in all lists */
.sidebar-menu li {
  list-style-type: none;
}