  /* General Page Styling */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #343a40;
    box-sizing: border-box;
  }
  
  /* Container for the carousel */
  .content-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Banner Styling */
.banner {
  text-align: center;
  color: #fff;
  width: 100%;
  height: 300px; /* Set the height for the banner */
  padding: 15px 10px;
  background-image: url('/static/sili_banner.gif'); /* Adjust path as needed */
  background-size: cover; /* Ensures the image covers the entire banner */
  background-position: center;
  background-repeat: no-repeat;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner h1 {
  font-size: 42px; 
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner p {
  font-size: 24px; 
  color: #f8f9fa;
  margin-bottom: 20px;
}

  
 /* Tab Navigation Styling */
.tab-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #e0e0e0;
}

.tab {
  margin: 0 20px;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: border-bottom 0.4s ease, color 0.3s;
}

.tab:hover, .tab.active {
  border-bottom: 3px solid #007bff;
  color: #007bff;
}

/* Tab Content Styling */
.tab-content {
  display: none; /* Hidden by default */
  padding: 20px;
  text-align: center;
}

.tab-content.active {
  display: block; /* Show when active */
}

/* Responsive Styling for Smaller Screens */
@media (max-width: 768px) {
  .tab-container {
    flex-direction: column; /* Stack the tabs vertically */
    align-items: flex-start; /* Align the tabs to the left */
  }

  .tab {
    margin: 10px 0; /* Add space between tabs */
    width: 100%; /* Make tabs full width on mobile */
    text-align: center; /* Ensure text is centered */
  }
}

  
/* Cards Container */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 15px;
}

/* Card Styling */
.card {
  width: 14rem;
  margin: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2), 
    0 12px 24px rgba(0, 0, 0, 0.15); /* Stronger shadows for a deeper 3D effect */
  backdrop-filter: blur(5px);
}

/* Card Visibility Animation */
.card.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effect */
.card:hover {
  transform: scale(1.05) translateY(-6px); /* More pronounced lift and scaling on hover */
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.3), 
    0 24px 48px rgba(0, 0, 0, 0.2); /* Enhanced shadow for stronger 3D effect */
}

/* Card Image */
.card-img-top {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05); /* More noticeable zoom effect */
}

/* Card Body */
.card-body {
  padding: 10px;
  text-align: center;
}

/* Card Title */
.card-title {
  font-size: 16px;
  font-weight: bold;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  margin-bottom: 5px;
  color: #343a40;
}

/* Tooltip Styling */
[data-toggle="tooltip"] {
  position: relative;
  cursor: pointer;
}

[data-toggle="tooltip"]::after {
  content: attr(title);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-toggle="tooltip"]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .card {
    width: 90%;
  }
}



  
  .btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.2s;
    background: linear-gradient(to right, rgba(0, 123, 255, 0.8), rgba(0, 191, 165, 0.8));
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  /* Custom Button Styling */
  .btn-custom {
    background-color: #f6f8fa;
    /* background: linear-gradient(to right, rgba(0, 123, 255, 0.8), rgba(0, 191, 165, 0.8)); */
    color: #111111;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .btn-custom:hover {
    background-color: #91989e;
  }
  
  /* Search Bar Styling */
  .search-bar {
    margin: 30px auto;
    text-align: center;
  }
  
  .search-bar input {
    width: 45%;
    padding: 12px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #ced4da;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .search-bar input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
  }
/* Responsive Table Wrapper */
.results-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* Table Header Styling */
th {
  background-color: #1560bd; /* Blue color for the header */
  color: white; /* White text for contrast */
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px;
}

/* Table cells on small screens */
@media (max-width: 768px) {
  th, td {
    font-size: 14px; /* Smaller font size for mobile */
    padding: 10px;   /* Reduce padding for mobile */
  }
  
  /* Make table headers more readable */
  th {
    font-size: 16px;
  }
}

/* Table cells styling */
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  background-color: #f8f9fa;
}

tr:hover td {
  background-color: #e9ecef;
}

  /* Pagination Controls Styling */
.pagination-controls {
  text-align: center;
  margin: 20px 0;
}

.pagination-controls button {
  background-color: #007bff;
  /* background: linear-gradient(to right, rgba(0, 123, 255, 0.8), rgba(0, 191, 165, 0.8)); */
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

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

.pagination-controls button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

#page-info {
  font-size: 16px;
  margin: 0 10px;
}


label {
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
  color: #343a40;
}

select {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

select option {
  padding: 10px;
}

#job-results-container {
  padding: 20px; /* Space inside the container */
  margin: 20px 0; /* Space outside the container */
  border: 1px solid #ddd; /* Light border */
  border-radius: 5px; /* Rounded corners */
  background-color: #f9f9f9; /* Light background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

#job-results-container h2 {
  margin-top: 0; /* Remove top margin */
  color: #333; /* Dark text color for the heading */
}

#job-results-container ul {
  list-style-type: disc; /* Bulleted list */
  padding-left: 20px; /* Indentation for the list */
}

#job-results-container li {
  margin: 5px 0; /* Space between list items */
  color: #555; /* Slightly lighter text color for list items */
}
/* Ensure the container for "Select Job" is responsive */
#job-select-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px auto;
  padding: 0 15px;
  max-width: 100%;
  width: 100%;
}

/* Styling for the label */
#job-select-container label {
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
  color: #343a40;
  flex-shrink: 0; /* Prevent label from shrinking */
}

/* Styling for the select input */
#job-select-container select {
  width: 100%;
  max-width: 300px; /* Limit width on larger screens */
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Apply a focus style */
#job-select-container select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
  #job-select-container {
    flex-direction: column; /* Stack the label and select on smaller screens */
    align-items: flex-start;
  }

  #job-select-container label {
    margin-bottom: 10px; /* Add space between label and select */
  }

  #job-select-container select {
    width: 100%; /* Make the select input full-width */
  }
}

/* Statistics Section */
.statistics-container {
  display: flex;
  justify-content: space-around;
  padding: 30px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 20px 0;
  border-radius: 10px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.stat-label {
  color: #6c757d;
  font-size: 1.1em;
}

/* Features Section */
.features-section {
  padding: 40px 20px;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 15px;
}

/* Categories for Tools */
.tools-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.category-filter {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-filter.active {
  background: #007bff;
  color: white;
}

/* Quick Start Guide */
.quick-start {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 20px;
  margin: 30px 0;
  border-radius: 10px;
}

.step-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 40px 20px;
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.testimonial-card {
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #007bff;
}

/* Add these styles for the Results section */
.results-container {
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

#job-select {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #fff;
}

.results-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
}

.results-container th {
  background: #f8f9fa;
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
  color: #495057;
}

.results-container td {
  padding: 12px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.results-container tr:hover {
  background-color: #f8f9fa;
}

.btn-custom {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  color: #007bff;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  color: #0056b3;
  transform: translateY(-1px);
}

.btn-custom i {
  margin-right: 5px;
}

#pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px;
}

#pagination button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

#pagination button:hover {
  background: #e9ecef;
}

#pagination button.active {
  background: #007bff;
  color: white;
}

#job-results-container {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#job-results-container h2 {
  color: #343a40;
  margin-bottom: 15px;
}

#job-results-container ul {
  list-style: none;
  padding: 0;
}

#job-results-container li {
  padding: 10px;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
}

#job-results-container li:last-child {
  border-bottom: none;
}

.status-running {
  color: #28a745;
}

.status-completed {
  color: #007bff;
}

.status-failed {
  color: #dc3545;
}

.status-terminated {
  color: #6c757d;
}

.search-bar {
  margin-bottom: 20px;
}

.search-bar input {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Fade In Animation */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

/* Slide Up Animation */
.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease-out forwards;
}

/* Count Up Animation for Statistics */
.animate-count-up {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add these styles to your home.css file */

/* Base styles for scroll animations */
.scroll-animate {
  opacity: 0;
  transition: all 1s;
}

/* Animation when element comes into view */
.scroll-animate.show {
  opacity: 1;
}

/* Slide from bottom */
.scroll-slide-up {
  transform: translateY(50px);
}
.scroll-slide-up.show {
  transform: translateY(0);
}

/* Slide from left */
.scroll-slide-left {
  transform: translateX(-100px);
}
.scroll-slide-left.show {
  transform: translateX(0);
}

/* Slide from right */
.scroll-slide-right {
  transform: translateX(100px);
}
.scroll-slide-right.show {
  transform: translateX(0);
}

/* Scale animation */
.scroll-scale {
  transform: scale(0.5);
}
.scroll-scale.show {
  transform: scale(1);
}

/* Rotate animation */
.scroll-rotate {
  transform: rotate(-180deg);
}
.scroll-rotate.show {
  transform: rotate(0);
}

/* Fade animation with delay for staggered effect */
.scroll-fade-delay {
  opacity: 0;
  transition-delay: var(--delay, 0s);
}
.scroll-fade-delay.show {
  opacity: 1;
}

.message-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: black;
  padding: 20px;
  border: 1px solid #6c757d94;
  border-radius: 8px;
  display: none; /* Hidden by default */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  height: 200px; /* Set desired height */
  width: 420px; /* Optional width for the container */
  overflow: auto; /* Add scroll if content overflows */
  display: flex;
  justify-content: center; /* Center text horizontally */
  align-items: center; /* Center text vertically */
}

.message-container.show {
  display: block; /* Show the container */
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#messageText {
  position: absolute;
  top: 50px;
  margin-top: 50px; /* Apply margin to the top */
  display: flex;
}

#messageText span {
  opacity: 0;
  animation: fadeIn 0.1s forwards;
}

.image_logo {
  position: absolute;
  margin-left: 35%;
  width: 50px;
  height: 70px;
}

.message-container button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  color: #721c24;
  font-size: 14px;
  cursor: pointer;
}

.message-container button:hover {
  text-decoration: underline;
}

/* Animation for fading in each character */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}



.btn_login {
  display: inline-block;           /* Treat the link as a block-level element */
  padding: 5px 20px;              /* Add padding for button-like appearance */
  background-color: #398de7;       /* Button background color */
  color: white;                    /* Button text color */
  text-align: center;              /* Center-align the text */
  text-decoration: none;           /* Remove underline */
  border-radius: 5px;              /* Add rounded corners */
  font-size: 16px;                 /* Set font size */
  transition: background-color 0.3s ease; /* Add smooth hover transition */
}

.btn_login:hover {
  background-color: #0056b3;       /* Change background color on hover */
  color:orange;
}

/* Positioning the button absolutely */
.btn_login {
  position: absolute;
  bottom: 20px;                        /* Adjust the top position */
  left:160px;                   /* Adjust the right position */
}

