/* Wrapper Link */
.wu-cards-list-row, .wu-card-item, .wuitem, .wu-tdbox-item, .wu-imgbox-item{
    position: relative;
}
a.wu-card-link, a.wu-slide-link, a.wu-tdbox-link, a.wu-imagebox-link{
    background: transparent;
    border: none;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0px;
    left: 0px;
}


/*--- wuelementor cards ----*/
 .wu-cards-container {
   display: grid;
  gap: 20px;
}

.wu-card-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #0a1650;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

 .wu-card-item:hover {
   transform: translateY(-5px);
}
.wu-card {
   padding: 20px;
 }

.wu-card-content h3 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #fff;
}
.wu-card-designation {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

 .wu-card-content p {
  font-size: 1rem;
  color: #fff;
 }

.wu-card-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 10px;
 }

.wu-card-button:hover {
   background-color: #0056b3;
}
.wu-card-image img {
    width: auto !important;
    height: 50px !important;
}

.wu-cards-list-row {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    gap: 20px;
    background: #0a1650;
}
.wu-cards-list-row .wu-card-image img {
    max-width: 280px;
    height: auto !important;
}


.wuwordpress-slider .wuitem{
    padding: 40px 25px;
    border: 1px solid #d9d9d980;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1px;
    transition: all 0.35s ease-in-out 0s;
    margin: 10px;
 }
 
.wuwordpress-slider .wuitem img {
    height: 60px;
    width: auto !important;
}

.wuwordpress-slider .slide-content h3 {
    font-size: 18px;
    border-bottom: 1px solid #d3cfcf;
    padding-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
    font-weight: 500;
}
.wuwordpress-slider .wuitem a {
    border-bottom: 1px solid #266165;
}
/* Container */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

/* Each dot */
.owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}

/* Dot shape */
.owl-dots .owl-dot span {
      width: 50px;
    height: 6px;
    background: #ccc;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hover effect */
.owl-dots .owl-dot:hover span {
    background: #555;
}

/* Active dot */
.owl-dots .owl-dot.active span {
     background: #0d3b3b;
    width: 50px;
    height: 7px;
}