

/* cards   */

/* cards  */

.card{
 display: flex;
 flex-direction: column;
 gap: 10px;
 height: 250px !important;
 max-height: auto;
background:transparent !important;

}

.card .fa-solid{
  font-size: 24px;
  background: none;
}



@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.swiper-container {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

/* Left and right fade shadows */
.swiper-container::before,
.swiper-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.swiper-container::before {
  left: 0;
  background: linear-gradient(to right, #f0f0f0 0%, transparent 100%);
}

.swiper-container::after {
  right: 0;
  background: linear-gradient(to left, #f0f0f0 0%, transparent 100%);
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto !important;
}

.swiper-slide img {
  max-height: 60px;
  object-fit: contain;
  padding: 0 30px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.swiper-slide img:hover {
  filter: none;
}


  /* buttons and stuff */


.fa-solid{
    background: white;
    color: var(--primary-client);
    padding: 5px;
    border-radius: 100%;
    transition: 0.4s ease-in-out;

  }  

  .button1{
    padding: 5px 5px 5px 15px;
    width: 200px;
    border: solid 1px #ffffff50;
    border-radius: 20px !important;
    background:transparent;
    color:  #fff;
    position: relative; /* Needed for pseudo-element positioning */
    overflow: hidden; /* Ensures background stays inside */
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    z-index: 1; /* Keeps text above */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .button1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(-100%); /* Start completely outside (left) */
    transition:  0.4s ease-in-out;
    z-index: -1; /* Moves background behind the text */
  }
  
  .button1:hover::before {
    transform: translateX(0); /* Slide in fully */
    background: #fff;
    transition: 0.4s ease-in-out;
  }
  .button1:hover .fa-solid, .button-2:hover .fa-solid{
    color: white;
    transform: rotate(360deg); /* Slide in fully */
    background: var(--primary-client);
    transition: 0.4s ease-in-out;
  }
  
  .button1:hover{
    color: var(--primary-client);
    z-index: 2;
    }
  
  
  .button-2{
    padding: 5px 5px 5px 15px;
    width: 200px;
    border: solid 1px #32437350;
    border-radius: 20px !important;
    background:transparent;
    color:  #324373;
    position: relative; /* Needed for pseudo-element positioning */
    overflow: hidden; /* Ensures background stays inside */
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    z-index: 1; /* Keeps text above */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .button-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: translateX(-100%); /* Start completely outside (left) */
    transition:  0.4s ease-in-out;
    z-index: -1; /* Moves background behind the text */
  }
  
  .button-2:hover::before {
    transform: translateX(0); /* Slide in fully */
    background: #324373;
    transition: 0.4s ease-in-out;
  
  }
  
  .button-2:hover{
    color: white;
    z-index: 2;
    font-weight: 600;
    
  }
  

  /* ----------------- slider --------------------- */
/* Layout Wrappers */
/* .sidebar-container {
} */

.app-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Sidebar */
.sidebar {
  flex: 0 0 200px;
  padding: 20px 0 20px 20px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar a {
  display: block;
  margin: 20px 0;
  color: #888;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: 0.3s ease-in-out;
  padding: 0 10px ;
  margin-left: 20px;
}

.sidebar a.active {
  background-color: var(--primary-client);
  font-weight: 600;
  color: white !important;
}

/* Wire Animation */
.sidebar .wire {
  position: absolute;
  left: 10%;
  width: 4px;
  height: 30px;
  background-color: var(--primary-client);
  border-radius: 2px;
  top: 0;
  z-index: 0;
  transition: height 1s ease-in-out;
}

/* Main Content */
.main-content {
  flex: 1;
  min-width: 0;
}

/* Application Sections */
.application {
  display: flex;
  margin-bottom: 100px;
}

.application-image {
  background-image: url('images/hero-section.jpg');
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  color: white;
}
.table-dark-fancy {
    background-color: var(--color-surface);
    color: #000 !important;
    border-color: #222;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 8px;
    /* box-shadow: var(--shadow-default); */
    overflow: hidden;
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
  }

  .table-dark-fancy th,
  .table-dark-fancy td {
    border: 1px solid var(--color-border);
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    white-space: normal;
    word-wrap: break-word;
  }

  .table-dark-fancy thead th {
    background-color: var(--primary-client);
    color: var(--color-white);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    border-color: #222;
    line-height: 1.4;
  }

  .text-red {
    color: black;
    font-weight: 600;
  }



  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
  }

      
      /*  banner zhfr  */

     .banner-zhfr{height: 51vh;}

      
      /*  banner zhfr  */

     .banner-zhfr{height: 51vh;}



