/* Floating Menu Styles */
.floating-menu {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index:50;
    display:block;
}
.home .floating-menu{
    /*display:none;*/
}
.floating-menu a {
    text-decoration: none;
    color: white;
    background-color: #1bbde4;
    border: none;
    padding: 8px;
    margin: 0;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: background-color 0.3s;
    text-align:center;
}

/* Odd numbered items */
.floating-menu a:nth-child(odd) {
    background-color: #1bbde4; /* Blue color for odd items */
}

/* Even numbered items */
.floating-menu a:nth-child(even) {
    background-color: #1c85c8; /* Green color for even items */
}
/* Icon styles */
.floating-menu a i {
    color: white;
}
.floating-menu a:hover {
    background-color: #088aa9;
    color: white;
}
.floating-menu .text{
    font-size:12px;
    font-weight:500;
    line-height:15px;
}
@media screen and (max-width:828px){
    .floating-menu{
        display:none;
    }
}
.related-departments-list-custom{
    margin:20px 0 0 0; padding:0;
    list-style:none;
}
.related-departments-list-custom li{
    margin:0 0 20px 0;
}
.related-departments-list-custom li a{
    padding:0;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    background-color:#f1f3f3;
    color:#000;
    font-weight:500;
}
.related-departments-list-custom li .thumb{
   width:100px;
   height:100px;
}
.related-departments-list-custom li .thumb img{
    object-fit:cover;
    height:100%;
}
.related-departments-list-custom li .text{
   flex:1;
   padding:20px 20px;
}
.show-all-departments-custom {
    cursor: pointer;
    margin: 20px auto;
    display: block;
    padding: 10px 15px;
    background-color: #1c85c8;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    text-align:center;
}
.show-all-departments-custom:hover{
    background-color: #081839;
}
ul.health-package {
    display: grid;
    grid-template-columns: 1fr; /* default: 1 item per row */
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.health-package li {
    background: #f3f3f3;
    color: #333;
    border-radius: 0;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height:1.5;
}
ul.health-package li a{
    padding: 25px 35px;
    color: #333;
    font-weight:500;
    position:relative;
    display:block;
    width:100%;
}
ul.health-package li a:after{
    content:"\e812";
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%) rotate(90deg);
    height:22px;
    width:22px;
    border:1px solid #fff;
    font-family: "themesion-base-icons";
    border-radius:100%;
    background-color:#fff;
    font-size:12px;
    font-weight:500;
}
ul.health-package li:hover {
    background: #dddddd;
    color: #333;
}
/* Large screens: 3 items per row */
@media (min-width: 992px) {
    ul.health-package {
        grid-template-columns: repeat(3, 1fr);
    }
}
.health-package-accordion {
    margin: 0;
    padding: 0;
    list-style: none;
}
.health-package-accordion .accordion-item {
    background: #f3f3f3;
    margin: 10px 0;
    border-radius: 5px;
}
.health-package-accordion .accordion-header {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    background: #f3f3f3;
    border: 1px solid #ddd;
    text-align: center;
}
.health-package-accordion .accordion-header .title-wrapper{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    background-color:#1c85c8;
    color:#fff;
    padding:10px 20px;
    border-radius:25px;
    transition: all 1s;
}
.health-package-accordion .accordion-header .title-wrapper:hover{
    background:#1bbde4;
    transition: all 1s;
}
.health-package-accordion .accordion-header .title{
    color:#fff;
    font-weight:600;
}
.health-package-accordion .accordion-header .price{
    color:#fff;
    font-weight:500;
    margin-left:10px;
}
.health-package-accordion .accordion-content {
    padding:15px;
    background: #f9f9f9;
    color: #333;
    display:none;
}
.health-package-accordion .active .accordion-content {
    display: block;
    height: auto;
}
.health-package-title{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.health-package-title .price{
    padding:10px 20px;
    background-color:#1c85c8;
    color:#fff;
    font-size:16px;
    border-radius:25px;
}
ul.health-package-test {
    display: grid;
    grid-template-columns: 1fr; /* default: 1 item per row */
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.health-package-test li {
    background: #f5f5f5;
    color: #000;
    padding: 25px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border:1px dashed #ccc;
}
ul.health-package-test li:hover {
    background: #dcf8ff;
    color: #000;
    border:1px dashed #1c85c8;
}
/* Large screens: 3 items per row */
@media (min-width: 992px) {
    .health-package-title{
        flex-direction:row;
    }
    ul.health-package-test {
        grid-template-columns: repeat(3, 1fr);
    }
}
.tests-of-a-department-details{
    padding:60px 0;
}
.department-wise-tests-title{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
ul.department-wise-tests {
    display: grid;
    grid-template-columns: 1fr; /* default: 1 item per row */
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.department-wise-tests li {
    background: #f5f5f5;
    color: #000;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border:1px dashed #ccc;
}
ul.department-wise-tests li a{
    padding: 25px 15px;
}
ul.department-wise-tests li:hover {
    background: #dcf8ff;
    color: #000;
    border:1px dashed #1c85c8;
}
/* Large screens: 3 items per row */
@media (min-width: 992px) {
    .department-wise-tests-title{
        flex-direction:row;
    }
    ul.department-wise-tests {
        grid-template-columns: repeat(3, 1fr);
    }
}
.test-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 10px;
    list-style:none;
}
.test-list-grid li {
    font-weight: 600;
    padding-left:30px;
    position:relative;
}
.test-list-grid li:before {
    content: "\f17e";
    font-family: Flaticon;
    color:#1c85c8;
    height:30px;
    width:30px;
    position:absolute;
    left:0;
    top:0;
}
.specialist-card-custom {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
    height:100%;
}
.specialist-card-custom .inner-specialist {
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    justify-content: flex-start;
    padding:15px;
}
.specialist-card-custom .specialist-image {
    height:100px;
    width:100px;
    border:1px solid #ddd;
    margin-right:15px;
    overflow:hidden;
}
.specialist-card-custom .specialist-image img {
    object-fit:cover;
    width:100%;
    height:100%;
}
.specialist-card-custom .specialist-content {
    flex:1;
}
.specialist-card-custom .specialist-title {
    padding:5px 7px;
    background-color:#f2f2f2;
    font-size:14px;
    line-height:18px;
    text-transform:uppercase;
    margin-bottom:5px;
}
.specialist-card-custom .specialist-position {
    font-size:13px;
    line-height:16px;
    font-weight:600;
    color:#676767;
    font-style:italic;
}
.specialist-card-custom .specialist-department {
    font-size:13px;
    line-height:16px;
    color:#676767;
    font-style:italic;
}
.specialist-card-custom .thsn-short-description{
    font-size:14px;
    line-height:18px;
    margin-top:0;
    margin-bottom:5px;
    font-weight:500;
}
.specialist-card-custom .thsn-short-description ul{
    margin-top:0;
    margin-bottom:0;
    padding-left:0;
    list-style:none;
}
.specialist-card-custom .thsn-short-description ul li, .specialist-card-custom .thsn-short-description ul li p{
    font-size:14px !important;
    margin-bottom:0;
    text-align:left;
    line-height:18px;
    font-weight:500;
}
.specialist-card-custom .specialist-action {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    align-items: stretch;
}
.specialist-card-custom .make-appointment {
    width:100%;
    background-color:#1bbde4;
    padding:7px 5px;
    font-size:14px;
    line-height:20px;
    color:#fff;
    text-align:center;
    cursor:pointer;
    font-family: "Nunito", sans-serif !important;
    font-weight:700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.specialist-card-custom .more-details {
    width:100%;
    background-color:#088aa9;
    padding:7px 7px;
    font-size:15px;
    line-height:20px;
    color:#fff;
    text-align:center;
    cursor:pointer;
    font-family: "Nunito", sans-serif !important;
    font-weight:700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
/* Appointment Modal Styles */
.appointment-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

/* Modal Content */
.appointment-modal-content {
    background-color: #fff;
    margin: 0;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 620px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    border: 10px solid #1c85c8;
}

/* Close Button */
.appointment-close {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position:absolute;
  top:-20px;
  right:-20px;
  background:#FFF;
  height:30px;
  width:30px;
  cursor:pointer;
  border-radius:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.appointment-close:hover,
.appointment-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.appointment-modal-content input, .appointment-modal-content select{
    padding:5px 15px;
    /*height:40px;*/
}
.appointment-modal-content input[type='submit']{
    background-color:#1c85c8;
    margin-top:10px;
}
.appointment-modal-content input[type='submit']:hover{
    background-color:#000;
}
.form-section-custom{
    display:block;
    padding:30px !important;
    border:10px solid #e1fffc;
    border-radius:4px;
    box-shadow:0 5px 10px #ccc;
    background-color:#fff;
    margin-left:20px;
    margin-right:20px;
}
.form-group-custom{
	margin-bottom:15px;
	position:relative;
	z-index:20;
}
.form-group-custom label{
	display:block;
	text-align:left;
}
form#appointment_booking_form input:not([type='submit']),form#appointment_booking_form select{
    padding-left:60px;
    border:1px solid #1c85c8;
}
form#appointment_booking_form select#department_select{
    background:url(./images/briefcase.png) no-repeat left center;
    background-size: 50px 50px;
}
form#appointment_booking_form select#doctor_select{
    background:url(./images/doctor.png) no-repeat left center;
    background-size: 50px 50px;
}
form#appointment_booking_form input#name{
    background:url(./images/user.png) no-repeat left center;
    background-size: 50px 50px;
}
form#appointment_booking_form input#email{
    background:url(./images/email.png) no-repeat left center;
    background-size: 50px 50px;
}
form#appointment_booking_form input#phone{
    background:url(./images/phone.png) no-repeat left center;
    background-size: 50px 50px;
}
form#appointment_booking_form input#appointment_date{
    background:url(./images/calendar.png) no-repeat left center;
    background-size: 50px 50px;
}
form#appointment_booking_form input#appointment_time{
    background:url(./images/time.png) no-repeat left center;
    background-size: 50px 50px;
}
.refreshing-custom{
    margin:40px auto;
    height:45px;
    width:45px;
    background:url(./images/refreshing.gif) no-repeat center center;
    background-size:cover;
    display:none;
}
.notice-board-posts {
}
.notice-board-post{
    border:1px solid #f2f2f2;
    margin-bottom:20px;
    padding:20px;
}

.notice-board-post {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.notice-board-post h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom:0;
}

.notice-board-post .excerpt {
    font-size: 1.1rem;
    color: #555;
}

.notice-board-post .published-date{
    font-style:italic;
    font-size:13px;
}

.notice-board-post {
    display:flex;
    flex-direction:row;
}

.notice-board-post .icon{
    height:40px;
    width:40px;
    margin-right:20px;
}

.notice-board-post .content{
    flex:1;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    padding: 8px 16px;
    margin: 0 5px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #005177;
}

.pagination .current {
    padding: 8px 16px;
    border-radius: 5px;
    background-color: #333;
    color:#fff;
}
.help-block{
    position: relative;
    color: #da0000;
    font-style:italic;
    display:block;
    font-size:12px;
    text-align:left;
    margin-top:5px;
}
.ui-timepicker-standard a{
    font-size: 14px;
    color: #848484 !important;
}
.ui-timepicker-standard .ui-state-hover {
    background-color: #f2f2f2 !important;
    border: 1px solid #f2f2f2 !important;
    color: #222 !important;
}
.thsn-navbar>div>ul{
    position:static !important;
}
.thsn-header-menu-area-inner{
    position:relative;
}
/* Parent li must be relative */
li.mega-menu-item {
    position: static !important;
}
/* The actual mega menu dropdown */
ul.sub-menu.mega-menu-custom {
    position: absolute !important;
    top: 100% !important; 
    left: 0 !important;
    width:100% !important;
}
/* Inner wrapper */
ul.mega-menu-custom .mega-menu-content-custom {
    padding: 5px;
    box-sizing: border-box;
    display:flex;
    flex-direction:column;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /*height:320px;*/
    /*overflow:auto;*/
}
li.mega-menu-item .elementor>.elementor-element:first-child{
    margin-top:0 !important;
}
.mega-menu-custom .sub-menu-toggle{
    display:none;
}
div.menu-inline-custom{
    display: flex !important;
    flex-wrap: wrap; /* wrap to multiple rows if needed */
    flex-direction: row;
    gap: 5px; /* Optional spacing between items */
}
div.menu-inline-custom div.item{
    padding:0 !important;
    margin:0 !important;
    height:auto !important;
    font-size:16px !important;
    width: 24% !important; /* Each item takes 25% of row */
    border-bottom:1px dashed #ddd;
    text-transform:none !important;
}
div.menu-inline-custom div.item:nth-last-child(-n+4) {
    border-bottom: none !important;
}
div.menu-inline-custom div.item a{
    padding:10px 15px 10px !important;
    height:auto !important;
    line-height: 22px !important;
    border:none !important;
    display:block;
    font-size:18px;
}
div.menu-inline-custom div.item a:hover{
    background-color:#1c85c8;
    color:#fff;
}
.thsn-portfolio-style-2 .thsn-content-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
}
.thsn-ihbox-style-8{
    padding:20px !important;
}
/* Styling for the YouTube Gallery */
.youtube-gallery-custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 items per row on larger screens */
    gap: 20px;
}
/* Mobile responsiveness - 1 item per row */
@media (max-width: 600px) {
    .youtube-gallery-custom-grid {
        grid-template-columns: repeat(1, 1fr);  /* 1 item per row on mobile */
    }
}
.video-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    position: relative;
    cursor:pointer;
}
.video-item:before{
    height:100%;
    width:100%;
    content: "";
    position:absolute;
    left:0;
    top:0;
    z-index:5;
    /*background:rgba(0,0,0,0.5);*/
}
.video-thumbnail {
    margin-bottom: 10px;
}

.video-thumbnail iframe {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

/* Modal Styles */
.video-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background-color: #fff;
    width: 80%;
    max-width: 900px;
    height: 535px;
    padding: 10px;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
}

.modal-body {
    height: 100%;
    overflow: hidden;
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #111;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
    border: none;
    height:30px;
    width:30px;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content: center;
}
/* Basic styling for the breadcrumb list */
.custom-breadcrumb {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px; /* Adjust the font size to your preference */
}

/* Style for each breadcrumb item */
.custom-breadcrumb li {
    margin-right: 10px; /* Spacing between breadcrumb items */
}

/* Style for breadcrumb links */
.custom-breadcrumb li a {
    color: #0073aa; /* Blue color for the links */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make links bold */
}

/* Style for breadcrumb links when hovered */
.custom-breadcrumb li a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #005177; /* Darker color on hover */
}

/* Font Awesome Arrow Icon separator */
.custom-breadcrumb li::after {
    content: '\f105'; /* Unicode for Font Awesome right arrow */
    font-family: "Font Awesome 5 Free"; /* Specify Font Awesome */
    font-weight: 900; /* Bold weight for the icon */
    margin-left: 10px; /* Space between breadcrumb item and separator */
    color: #999; /* Gray color for the separator */
}

/* Remove separator after the last breadcrumb */
.custom-breadcrumb li:last-child::after {
    content: '';
}

/* Style the last breadcrumb item (non-link) */
.custom-breadcrumb li:last-child {
    font-weight: normal; /* Regular weight for the last item */
    color: #333; /* Dark color for the last breadcrumb item */
}

/* Admin Team Grid Container */
.admin-teams-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Add space between items */
    justify-content: center; /* Centers all items horizontally */
    margin: 0 auto;
}

/* Individual Admin Team Item */
.admin-team-item {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0 25px #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbdbdb; /* Equal border around each item */
    box-sizing: border-box; /* Ensures padding + border is included in width */
    /* Default flex-basis (4 items per row on desktop) */
    flex-basis: calc(100% / var(--items-in-desktop) - 20px); /* Adjusted to allow space between items */
    transition: background-color 0.3s ease;
}

/* Tablet Layout */
@media (max-width: 768px) {
    .admin-team-item {
        flex-basis: calc(100% / var(--items-in-tab) - 15px); /* Default 2 items per row */
    }
}

/* Mobile Layout */
@media (max-width: 480px) {
    .admin-team-item {
        flex-basis: calc(100% / var(--items-in-mobile) - 15px); /* 1 item per row */
    }
}

/* Admin Team Thumbnail */
.admin-team-thumb {
    height: 300px;
    width: 300px;
    border-radius:100%;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.admin-team-thumb img {
    width: auto !important;
    height: 100% !important;
}

/* Admin Team Info */
.admin-team-info {
    margin-top: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.admin-team-info h6 {
    margin-bottom: 10px;
    /*color: #fff;*/
}

.admin-team-info h4 {
    margin-bottom: 10px;
    /*color: #fff;*/
}

.admin-team-item:hover h5 {
    /*color: #fff;*/
}

.admin-team-item button {
    background:none;
    padding:0;
    color: #088aa9;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor:pointer;
    text-transform:none;
    font-size:14px;
}

.admin-team-item:hover button {
    color: #088aa9;
}

/* Admin Team Categories */
.admin-team-categories {
    margin-top: 10px;
}

.admin-team-category {
    background-color: #F1F1F1;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}

/* Pagination Styling */
.admin-teams-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.admin-teams-pagination .page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.admin-teams-pagination .page-numbers a {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.admin-teams-pagination .page-numbers a:hover {
    background-color: #005177;
}

.admin-teams-pagination .page-numbers .current {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

.admin-teams-pagination .first-page,
.admin-teams-pagination .last-page {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.admin-teams-pagination .first-page:hover,
.admin-teams-pagination .last-page:hover {
    background-color: #005177;
}

.single-admin_team .featured-image{
    border: 3px solid #1c85c8;
}

.single-admin_team .block-sticy{
    position: sticky;
    top: 0;
}

.single-admin_team .featured-image img{
    width:100%;
}

.single-admin_team .admin-team-title{
    background-color: #1c85c8;
    color: #ffffff;
    text-align: center;
    padding: 5px 15px;
    font-size: 20px;
    margin-top: 0;
}

.single-admin_team .admin-team-designation{
    color:#1c85c8;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-team-department{
    font-weight: 400 !important;
    font-family: inherit;
    font-style: italic;
}

@media (min-width: 1201px) {
    .thsn-navbar ul>li>ul>li>a {
        padding: 10px 30px !important;
    }
    .thsn-navbar ul>li>ul>li>a::before {
        top: 20px !important;
    }
}
@media (min-width: 1200px) {
	ul.mega-menu-custom {
        max-width: 1500px !important;
    }
}
@media (max-width:828px) {
    li.mega-menu-item {
         position: relative !important; 
    }   
    ul.mega-menu-custom .mega-menu-content-custom{
        background-color:transparent;
        padding:0 0 0 10px;
    }
    ul.mega-menu-custom .mega-menu-content-custom .elementor-widget-container{
        color:#fff;
    }
    ul.sub-menu.mega-menu-custom{
        position:relative !important;
    }
    div.menu-inline-custom{
        flex-direction: column;
        gap: 0; /* Optional spacing between items */
    }
    div.menu-inline-custom div.item{
        width: 100% !important; /* Each item takes 25% of row */
    }
    div.menu-inline-custom div.item{
        border-bottom: none;
    }
    div.menu-inline-custom div.item a{
        padding:12px 15px 12px !important;
    }
}