/* Hero section with background video */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  line-height: 0;
  font-size: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 0;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(87, 67, 67, 0.73));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-feature-row {
  margin-top: 100px;
  color: #fff;
}

.box-skin__body h5 {
  text-align: center;
}

/* Navbar styles */
.custom-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  transition: background-color 0.3s ease;
}

.custom-navbar.scrolled {
  background-color: #900;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-brand img {
  max-height: 50px;
}

.navbar-toggle {
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.navbar-links li {
  position: relative;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
  display: block;
}

.navbar-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  padding: 0;
  z-index: 99;
}

.navbar-links li:hover > .dropdown {
  display: flex;
}

.dropdown li a {
  padding: 10px;
  white-space: nowrap;
  color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

.navbar-menu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  background: #900;
  position: absolute;
  padding-right:50px;
  top: 100%;
  right: 0;
  height: auto;
  border-left: 2px solid #700; /* Optional visual separator */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-menu.open {
    display: flex;
  }

  .navbar-links {
    flex-direction: column;
    gap: 10px;
  }

  .navbar-links li {
    width: 100%;
    background: #900;
  }

.navbar-links li a {
  text-align: left;
  padding-left: 20px;
}

  /* Reset default dropdown on mobile */
  .navbar-links .dropdown {
    position: static;
    display: none;
    background: transparent !important;
    padding: 0;
  }

  /* Show red background when open */
  .navbar-links li.open > .dropdown {
    display: flex !important;
    background-color: #900 !important;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 4px;
  }

  .navbar-links li.open > .dropdown li a {
    background-color: #900 !important;
    color: white !important;
    padding: 10px 15px;
  }

  .navbar-links li.open > .dropdown li:last-child a {
    border-bottom: none;
  }

  .hero-logo img {
    display: none;
  }
  
  .dropdown {
  	margin-left:20px;
    }
}

  .hide_mobile{
	display: flex;
	}

@media (max-width: 768px) {
  .hide_mobile{
	display: none;
	}
}


