.head-logo{
    width: 200px;
    background: white;
    border-radius: 10px;
    padding: 3px 5px 10px 5px;

}


.news-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.5em; /* adjust if needed based on font-size */
}

.news-content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 5.8em; /* adjust if needed based on font-size */
}

.contact-info-area-2 .contact-info-items .content p {
    color: #ffffff !important;

}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
    color: #ffffff !important;
}

.footer-widget-wrapper .single-footer-widget .list-items li a {
    color: white; /* default white color */
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
    padding-left: 15px; /* space for dash */
}

.footer-widget-wrapper .single-footer-widget .list-items li a::before {
    content: '';
    position: absolute;
    left: 0;
    color: white;
    transition: 0.3s ease;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a::before {
    content: '-';
}


.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: #ffffff !important;

}

 .single-sideber-widget .details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-sideber-widget .details-list li {
    margin-bottom: 10px;
    transform: scale(1);
    transition: transform 0.3s ease;

}

.single-sideber-widget .details-list li a {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.single-sideber-widget .details-list li:hover {
    transform: scale(1.05);

}
.rec_active{
    background: #acd1ff;
}


.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;       /* Show maximum 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 6em;             /* 1.5em x 4 lines */
}
.service-box-item .service-icon-item .service-image img {
   
    border-radius: 12px;
}


.pricing-items .pricing-header .number h2 {

    font-size: 40px !important;
   
}

.custom-select-wrapper {
  position: relative;
  border-radius: 6px;
}

.custom-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 16px;
  appearance: none;
  cursor: pointer;
}

.custom-select:focus {
  outline: none;
  border-color: var(--theme, #00b894);
}

.nice-select {
  z-index: 1000 !important;
  position: relative;
}

.nice-select .list {
  z-index: 9999 !important;
  position: absolute;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid #ccc;
}

/* Plan Card Styling */
.plan-card {
  border: 2px solid #0e1b6a;
  transition: 0.3s;
  cursor: pointer;
  padding: 10px;
  color: black;
  text-align: center;
  border-radius: 6px;
}

.plan-card:hover {
  background-color: #f2f6ff;
}

.plan-card.border-success {
  border-color: #0e1b6a;
  background-color: #0e1b6a;
  color: white;
}

.plan-card.border-success h6 {
  color: white !important;
  transition: 0.3s;
}