body { 
  font-family: 'Poppins', sans-serif; 
  background-color: #f4f4f4; 
}
.container { 
  max-width: 1100px; 
  margin: auto;
  padding: 20px; 
}
.btn-custom { 
  border-radius: 30px; 
  text-transform: uppercase; 
  font-size: 15px; 
  padding: 6px 12px; 
}
.btn-danger { 
  background-color: #dc3545; 
  color: white; 
}
.btn-primary { 
  background-color: #1e025b; 
}
.product-list { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column; 
}
.product-list ul { 
  display: inline-block; 
  text-align: center; 
  padding: 0; 
}
.product-list li { 
  list-style: none; 
  padding: 12px 20px; 
  border-radius: 10px; 
  background: #1e025b; 
  color: #fff; 
  margin-bottom: 8px; 
  font-size: 18px; 
  font-weight: bold; 
  text-align: center; 
}
.dashboard { 
  display: flex; 
  justify-content: space-between;
   gap: 20px; 
   width: 100%; 
  }
.box { 
  flex: 1;
   text-align: center;
   padding: 30px;
   border-radius: 10px; 
   background: #fff; 
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  }

.box img { 
  width: 100px; 
  height: 100px; 
}
.footer { 
  background-color: #1e025b; 
  color: white; 
  text-align: center; 
  padding: 10px; 
  position: fixed; 
  bottom: 0; 
  width: 100%; 
}
a:hover { 
  transform: scale(1.05); 
  transition: 0.3s ease-in-out; 
}
.header_section { 
  background-color: #1e025b !important; 
  padding: 8px 0; 
}
/*.header_section img { 
  width: 150px; 
  height: 50px; }
.header_section a { 
  color: white !important; 
}*/
 .navbar-nav .nav-item .nav-link { 
  color: white !important; 
  font-weight: bold; 
}
.navbar-nav .nav-item .nav-link:hover { 
  text-decoration: underline; 
}
.navbar-brand {
    padding-left: 0;
   }

.dropdown-menu { 
  background-color: #1e025b; 
}
.dropdown-item { 
  color: white !important; 
}
.dropdown-item:hover { 
  background-color: #4b0082;
 }
.service_section .box {
  width: 175px;
  text-align: center;
  margin: 30px 0;
  font-family: "Roboto", sans-serif;
  height:275px;
  border-bottom: 1px solid #dadada;
}

.service_section .box .img-2 {
  display: none;
}

.service_section .box .img-box {
  width: 175px;
  height: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f3f3f3;
}

.service_section .box .name {
  margin-top: 15px;
}

.service_section .box .name h6 {
  text-transform: uppercase;
  color: #000000;
  font-weight: bold;
}

.service_section .box:hover .img-1 {
  display: none;
}

.service_section .box:hover .img-2 {
  display: inline-block;
}
.service_section::before {
  content: "";
  position: absolute;
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
  top: 0;
  left: 0;
  background-image: url(../images/background-image4.jpg);
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents image repetition */
  z-index: -1;
}



.header_section .button {
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.header_section .button:hover {
  background-color: #0056b3;
}

