
  
/* Custom Card Header Background */  
.bg-custom-header {  
    background-color: #3182ce; /* Your primary brand color */  
}  
  
/* Custom Button Styles */  
.btn-custom {  
    background-color: #3182ce; /* Primary color */  
    color: #fff;  
    border: none;  
    transition: background-color 0.3s;  
}  
  
.btn-custom:hover {  
    background-color: #2e6cb0; /* Darker shade on hover */  
    color: #fff;  
}  
  
.btn-company-orange {  
    background-color: #f57f29; /* Orange shade */  
    color: #fff;  
    border: none;  
    transition: background-color 0.3s;  
}  
  
.btn-company-orange:hover {  
    background-color: #d66a1b; /* Darker orange on hover */  
    color: #fff;  
}  
  
/* Progress Bar Colors */  
.bg-company-green {  
    background-color: #3CB14A; /* Green shade */  
}  
  
/* Job Card Hover Effect */  
.job-card {  
    transition: transform 0.3s, box-shadow 0.3s;  
}  
  
.job-card:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);  
}  
  
/* Adjust Badge Styles */  
.badge {  
    font-size: 0.85em;  
}  
  
/* Responsive Adjustments */  
@media (max-width: 576px) {  
    .navbar-nav .nav-link {  
        margin-left: 0.5rem;  
        font-size: 0.95rem; /* Slightly smaller font on mobile */  
    }  
  
    footer {  
        height: auto;  
        padding: 1rem 0;  
    }  
  
    footer p {  
        line-height: 1.5;  
        font-size: 0.85rem; /* Slightly smaller text on mobile */  
    }  
  
    .navbar-brand img {  
        height: 40px; /* Reduced logo size on mobile */  
        margin-right: 10px;  
    }  
  
    .navbar-brand .brand-text {  
        font-size: 1rem; /* Reduced font size on mobile */  
    }  
  
    .card-title {  
        font-size: 1rem; /* Slightly smaller title on mobile */  
    }  
  
    .card-subtitle {  
        font-size: 0.9rem; /* Slightly smaller subtitle on mobile */  
    }  
}  



/* =================================
   UNIFIED COLOR SYSTEM 
   ================================= */
:root {
  /* Primary Brand Colors */
  --primary: #0069A7;
  --primary-light: #1e7cc7;
  --primary-dark: #004a73;
  
  /* Secondary Colors */
  --secondary: #3c4a62;
  --secondary-light: #5a6b8c;
  --secondary-dark: #2d3748;
  
  /* Semantic Colors */
  --success: #3CB14A;
  --success-light: #48c757;
  --success-dark: #2a8f3a;
  
  --warning: #f57f29;
  --warning-light: #ff8c42;
  --warning-dark: #d66a1b;
  
  --danger: #dc3545;
  --danger-light: #e85363;
  --danger-dark: #c82333;
  
  --info: #17a2b8;
  --info-light: #20c0db;
  --info-dark: #138496;
  
  /* Neutral Colors */
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark: #1e293b;
  --dark-navy: #003f6f;
  
  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-light: rgba(255, 255, 255, 0.95);
  
  /* Background Colors */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  
  /* Border Colors */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-success: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  --gradient-warning: linear-gradient(135deg, var(--warning) 0%, var(--warning-dark) 100%);
  --gradient-header: linear-gradient(135deg, #005f8a 0%, var(--dark-navy) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  
  /* Border Radius */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
}

/* =================================
   GLOBAL STYLES 
   ================================= */
body {
  font-family: 'Inter', system-ui, -apple-system;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0,105,167,.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border-color: var(--primary);
  border: none;
}

.btn-primary:hover {
  background: var(--gradient-primary);
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.progress-bar {
  background-color: var(--primary);
}

/* =================================
   PROFESSIONAL COMPONENTS 
   ================================= */
.professional-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.professional-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.btn-professional {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary-professional {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary-professional:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-success-professional {
  background: var(--gradient-success);
  color: white;
}

.btn-success-professional:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-warning-professional {
  background: var(--gradient-warning);
  color: white;
}

.btn-warning-professional:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-professional {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

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

.btn-sm-professional {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Professional Badges */
.badge-professional {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-framework { background: var(--primary); color: white; }
.badge-control { background: var(--info); color: white; }
.badge-key { background: var(--warning); color: white; }
.badge-aligned { background: var(--success); color: white; }
.badge-count { background: var(--secondary); color: white; }

/* =================================
   SEARCH & ADD CONTROLS STYLING 
   ================================= */
.search-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  transition: all 0.2s ease;
}

.search-section:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.search-input-group {
  display: grid;
  grid-template-columns: 200px 1fr 120px;
  gap: 1rem;
  align-items: end;
}

@media (max-width: 768px) {
  .search-input-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-label-professional {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-control-professional,
.form-select-professional {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: var(--bg-white);
}

.form-control-professional:focus,
.form-select-professional:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 105, 167, 0.1);
  outline: none;
  background: var(--bg-white);
}

.form-control-professional::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

/* Enhanced Search Results */
.search-results {
  margin-top: 1.5rem;
}

.search-summary {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.control-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.control-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.control-card-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.control-card-body {
  padding: 1.25rem;
}

.control-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.control-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}