 body {
    font-family: Arial, sans-serif;
}
.hero-section {
    background-image: url('../../images/currency.jpg'); /* Use '/mnt/data/currency.jpg' if that's accessible */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for better text contrast */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Text styling */
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
    position: relative;
    color: #FFD700; /* Gold color for emphasis */
}

.hero-section h4 {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 1rem 0;
    z-index: 2;
    position: relative;
    color: #ffffff; /* White color for readability */
}

/* Ensure content is positioned correctly */
.hero-section-content {
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 2rem;
    color: #0d6efd;
}

.card-shadow {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 2rem;
}

/*
 * Sidebar
 */

@media (min-width: 768px) {
  .sidebar .offcanvas-lg {
    position: -webkit-sticky;
    position: sticky;
    top: 48px;
  }
}


/*
 * Navbar
 */

.nav-link {
    transition: background-color 0.3s, color 0.3s, text-decoration 0.3s;
}

.nav-link:hover, .nav-link.active {   
    background-color: #0d6efd; 
    border-radius: 5px;
    color: white; 
} 

.select2-container .select2-selection--multiple {
  min-height: calc(2.25rem + 2px); /* Bootstrap .form-select height */
  border: 1px solid #ced4da;
  font-size: 16px;
}

.select2-container .select2-selection--single {
  min-height: calc(2.25rem + 2px); /* Bootstrap .form-select height */
  border: 1px solid #ced4da;
  font-size: 16px;
  padding-top: 5px;
}
