/* Your custom CSS styles go here */
.custom-select {
    display: inline-block;
    position: relative;
  }

  .custom-select select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    appearance: none; /* Remove default arrow in some browsers */
  }

  /* Styling for the arrow icon */
  .custom-select::after {
    content: '\25BC'; /* Unicode character for down arrow */
    font-size: 12px;
    color: #555;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  
.column {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 250px;
    height: 100px;
    /* Set the desired width */
    transition: box-shadow 0.3s, transform 0.3s;
    background-color: #fff;
    color: #333;
    margin-left: 50px;
    margin-bottom: 20px;
    overflow: hidden;
    /* Hide overflowing content */
}
.columns {
    color: grey;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 560px;
    height: 80vh;
    /* Set the desired width */
    transition: box-shadow 0.3s, transform 0.3s;
    background-color: #fff;
    color: #333;
    margin-right: 20px;
    /* margin-bottom: 20px; */
    /* overflow: hidden; */
    /* Hide overflowing content */
}

.columns .logo{
    padding: 0 10px;
    color: #26619c;

}
.heading h3 {
    color: grey;
}
.service_providing h5{
    /* margin-right: 30px; */
    margin-left: 30px;
    color: grey;
    font-size:1.2rem ;
    text-align: start;

}
.service_providing :hover h5{
    color: #26619c;
}
.service_type h5{
    /* margin-right: 30px; */
    font-size:1.2rem ;
    margin-left: 30px;
    color: grey;
    text-align: start;

}

.service_type :hover h5{
    color: #26619c;
}
.service_providing h4{
    margin-left: -25px;
    margin-top:1.5rem;
    font-size: 1rem;
    color: grey;
}
.service_type h4{
    margin-left: -90px;
    margin-top:1.5rem;
    font-size: 1rem;
    color: grey;
}
.column:last-child {
    margin-right: 0;
}

.label {
    color: grey;
}

.arrow {
    color: #26619c;
}

.column:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* .data{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
} */

.data-block {
    /* Add styles for the content block inside the column */
    /* white-space: nowrap; */
    /* Prevent text from wrapping */
    overflow: hidden;
    /* Hide overflowing content */
    text-overflow: ellipsis;
    /* Show an ellipsis (...) when content overflows */
}

.view-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    margin-right: 10px;
}

/* Style for the filter bar (1/4 of the page) */
.filter-bar {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #d1d0ce;
    /* Adjust the height as needed */

    /* Add more line spacing and increase text size */
    line-height: 2; /* Adjust the line spacing as needed */
    font-size: 18px; /* Adjust the font size as needed */
}

.navbar__nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.navbar__nav li {
    margin-right: 20px;
}

.navbar__nav a {
    text-decoration: none;
    color: #333;
}

.navbar__nav a:hover {
    color: #26619c !important; /* Change the text color to blue on hover */
}

.navbar__nav a:hover i {
    color: #26619c !important; /* Change the icon color to blue on hover */
}

.breadcrumbs__nav{
    display: flex;
    justify-content: space-between;
}

.modal{
    margin: 11rem 0;
}
.modal-content{
    /* height: 250px; */
    background-color: #f5f5f5;
}

 .closee{
    text-align: right;
    background-color: #1b5696 !important;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    padding: 0 10px;
}

.seacrh_model{
   display: flex; 
   justify-content:space-between; 
   padding:10px 5px;
}

.search_icon{
    color: #1b5696;
}

.search_button{
    display: flex; 
    justify-content:space-between; 
    gap:50px;
}
.search_button button{
    background-color: #1b5696;
    color: #fff;
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50px;
}

.drop_down{
    display: flex; 
    justify-content:space-evenly; 
    margin:20px 0;
}

.dropbtn {
    background-color: #1b5696;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    width: 15rem;
    border-radius: 30px;
    cursor: pointer;
    }

    .dropdown {
    display: flex;
    justify-content: space-evenly;
    }

    /* Dropdown Content (Hidden by Default) */
    .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    min-height: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    }

    .dropdown:hover .dropdown-content {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 10px 10px /* Adjust the gap between items as needed */     
    }

    /* Change the background color of the dropdown button when the dropdown content is shown */
    .dropdown:hover .dropbtn {
    background-color: #1b5696;
    }

    .preview {
        display: flex;
        flex-direction: row; /* Set the direction to row */
        flex-wrap: wrap; /* Allow items to wrap to the next line */
    }

    .preview div {
        margin-right: 10px; /* Add space between items */
    }