:root {
  --primary: #ff6b00;
  --primary-dark: #e65100;
  --primary-light: #ff944d;
  --secondary: #2b2b2b;
}

/* Custom primary button */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Admin navbar custom color */
.navbar-admin {
  background-color: var(--primary) !important;
  color: #fff;
}

.navbar-admin .navbar-brand,
.navbar-admin .nav-link,
.navbar-admin .navbar-toggler {
  color: #fff !important;
}

.navbar-admin .nav-link.active,
.navbar-admin .nav-link:focus,
.navbar-admin .nav-link:hover,
.navbar-admin .dropdown-item.active,
.navbar-admin .dropdown-item:focus,
.navbar-admin .dropdown-item:hover {
  color: #fff !important;
  background-color: var(--primary-dark) !important;
}

.navbar-admin .dropdown-menu {
  background-color: var(--primary-light);
  border: none;
}

.navbar-admin .dropdown-item {
  color: #252525;
}

.navbar-admin .dropdown-item:hover,
.navbar-admin .dropdown-item:focus {
  color: #fff;
  background-color: var(--primary-dark);
}

/* Text colors */
.text-primary {
  color: var(--primary) !important;
}

/* Navigation */
.navbar-brand {
  font-weight: 700;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Hero section */
.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url('../assets/images/photo-1580901368919-7738efb0f87e.jpeg') center/cover;
  color: white;
  padding: 8rem 0;
}

/* Service cards */
.service-card {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border: none;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: white;
  padding: 3rem 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary);
}

/* Equipment grid */
.equipment-card img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Custom shape divider */
.shape-divider {
  position: relative;
  overflow: hidden;
}

.shape-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: white;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Asset Table Styling */
.custom-asset-table {
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(44,44,63,0.04);
          box-shadow: 0 2px 10px rgba(44,44,63,0.04);
}
.custom-asset-table thead th {
  background: var(--primary) !important;
  color: #fff !important;
  vertical-align: middle;
}
.custom-asset-table tbody tr {
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.custom-asset-table tbody tr:hover {
  background: var(--primary-light, #ffe1cc);
}
.asset-thumb {
  border-radius: 6px;
  background: #f8f9fa;
  padding: 8px 10px;
  display: inline-block;
}
.custom-asset-table td, .custom-asset-table th {
  vertical-align: middle !important;
}
.custom-asset-table .badge {
  font-size: 1em;
  min-width: 2.5em;
  padding: .4em .7em;
  border-radius: 0.5em;
  display: inline-block;
  -webkit-box-shadow: 0 1px 2px rgba(40,40,60,.04);
          box-shadow: 0 1px 2px rgba(40,40,60,.04);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.custom-asset-table .text-end {
  padding-right: 1em;
}

/* Responsive text */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .custom-asset-table td,
  .custom-asset-table th {
    font-size: 0.9em;
    padding: 0.4rem 0.5rem;
  }
  .asset-thumb {
    font-size: 1.3em;
    padding: 3px 5px;
  }
}
.style1 {
  background-color: rgba(171, 171, 171, 0.49);
}
