
body{
  background-color: #fff !;
font-family: Open Sans !important;
  
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 800px;
  width: 90%;
}

.text-background {
  background-color: rgba(39, 71, 92, 0.8); /* semi-transparent black background */
  padding: 20px;
  border-radius: 8px;
}


.text-background h4 {
  margin: 0 0 10px;
  color: orangered;
}

.text-background p {
  margin: 0;
}

.bg-light{
background-color: #fff !important;
}

.container-fluid {
background-color: #fff !important;
}
.navbar  {
  background-color: #fff !important;
}

  .brown-divider {
    width: 200px;
    border: none;
    height: 4px;
    background-color: #f36c19; /* Deep brown */
    margin-top: 10px;
    margin-bottom: 20px;
  }

 .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .category-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .category-box:hover {
    background-color: #f86e0b;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px #f86e0b;
  }

  .category-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }

  .category-box:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
  }

  .category-box p {
    margin: 0;
    font-size: 0.95em;
    font-weight: 500;
  }

  .category-card {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-img {
  max-height: 200px;
  object-fit: contain;
  padding: 10px;
}

/* Show dropdown on hover for nested menus */
.dropdown-menu li:hover > .dropdown-submenu {
    display: block;
}

/* Position the nested dropdown */
.dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Navbar links default style */
.navbar a {
  color: #333;
  text-decoration: none;
  padding: 5px 5px;
  transition: color 0.3s, background-color 0.3s;
}

/* Hover effect */
.navbar a:hover {
  background-color: #ffceab; /* same as your category hover */
  color: #333;
}

/* Active link */
.navbar a.active {
  background-color: #ffceab; /* your brown divider color */
  color: #333;
}



