/* 
 * Elementor Widget Settings - Global CSS
 * Add your custom styles for all widgets below.
 */

/* main plugin css */

 /* Container for all cards */
 .ews-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Individual card styling */
.widget-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 360px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 8px;
}
.widget-card h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2271b1;
}
input:checked + .slider:before {
  transform: translateX(26px); 
}

 /* testimonial slider css */
 .swiper-container {
  width: 100%;
  height: 100%;
}

 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100% !important;
}

.testimonial-item {
    max-width: 600px;
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.default-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-content {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.author-name {
    font-weight: bold;
    color: #111;
    margin-top: 5px;
}

.author-position {
    font-size: 14px;
    color: #666;
}

.testimonial-slider-sec .swiper-button-prev {
    left: -50px;
}

.testimonial-slider-sec .swiper-button-next {
    right: -50px;
}

.testimonial-custom-sec,
.custom-banner-sec {
    overflow: hidden;
}
.star {
    color: gainsboro;
}
.testimonial-slider-sec .swiper-pagination {
    bottom: -50px !important;
}
@media (max-width:1550px) {
    .testimonial-slider-sec .swiper-button-prev {
        left: -30px;
    }
    
    .testimonial-slider-sec .swiper-button-next {
        right: -30px;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 30px;
    }
}
@media (max-width:1024px) {
    .testimonial-slider-sec .swiper-button-prev {
        left: -20px;
    }
    
    .testimonial-slider-sec .swiper-button-next {
        right: -20px;
    }
    
}

@media (max-width:767px) {
    .custom-slider .content-container {
        left: 20px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }
}

/* banner slider css */


.custom-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    direction: ltr;
}


.custom-slider .slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.custom-slider .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-slider .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-slider .content-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 20px;
    width: calc(100% - 40px); /* Ensure it doesn't go full width */
    max-width: 600px; /* Set a max width for the content */
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    box-sizing: border-box;
    border-radius: 15px;
    max-height: 200px; /* Set a fixed height for the content container */
    overflow-y: hidden; /* Allow scrolling if the content exceeds the max height */
}

.custom-slider .logo {
    margin-bottom: 10px;
}

.custom-slider .logo img {
    width: 50px;
    height: auto;
}

.custom-slider h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.custom-slider p {
    font-size: 1.2em;
    color: #ccc;
    line-height: 1.5;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-indicators .indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.slider-indicators .indicator.active {
    background-color: rgba(255, 255, 255, 1);
}



.custom-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #f4f4f4; /* Background color for the slides */
}

.custom-slider .image-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.custom-slider .slide-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    /* padding: 10px; */
    background: rgba(0, 0, 0, 0.5);
    max-width: 600px; /* Limit the width of content */
    width: calc(100% - 40px);
    box-sizing: border-box;
    max-height: 200px; /* Fixed height for content */
    overflow-y: auto; /* Scrollable content if it exceeds max height */
   
}

.custom-slider h3, .custom-slider p {
    font-size: 20px;
    margin: 0;
}

.custom-slider .swiper-button-next, .custom-slider .swiper-button-prev {
    color: #fff;
}

.custom-slider .swiper-pagination {
    bottom: 10px;
}

.custom-slider-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}


/* timeline widget css */

.timeline-start, .timeline-end {
    background-color: #D6D6D6;
    width: 12px;
    height: 12px;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
  }
  @media (max-width: 1024px) {
    .timeline-start, .timeline-end {
      left: 0;
      transform: translateX(-30%);
    }
  }
  
  .timeline-start {
    top: -10px;
  }
  
  .timeline-end {
    bottom: -10px;
  }
  
  .timeline.timeline-vertical {
    position: relative;
    margin: 0;
    padding: 40px 0;
    display: flow-root;
    max-width: 900px;
    width: 100% !important;
  }
  .timeline.timeline-vertical::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 5px;
    background-color: #D6D6D6;
  }
  @media (max-width: 1024px) {
    .timeline.timeline-vertical::before {
      left: 0;
      transform: none;
    }
  }
  .timeline.timeline-vertical .timeline-item {
    position: relative;
    width: calc(50% - 20px);
    clear: both;
    z-index: 9;
    padding: 20px;
    box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    border-radius: 10px;
  }
  .timeline.timeline-vertical .timeline-item .timeline-year {
    position: absolute;
    top: 5px;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
  }
  .timeline.timeline-vertical .timeline-item .timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
  }
  .timeline.timeline-vertical .timeline-item .timeline-icon svg {
    width: 30px;
    height: 30px;
  }
  .timeline.timeline-vertical .timeline-item .timeline-arrow {
    position: absolute;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-color: #222222;
    z-index: 2;
    border-style: solid;
  }
  .timeline.timeline-vertical .timeline-item .timeline-title {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
  }
  .timeline.timeline-vertical .timeline-item .timeline-description {
    font-size: 16px;
    font-weight: 300;
    margin: 10px 0 0;
  }
  .timeline.timeline-vertical .timeline-item.left {
    float: left;
    margin-left: -50px;
    border-right: 3px solid #222222;
  }
  .timeline.timeline-vertical .timeline-item.left .timeline-year {
    right: -205px;
  }
  .timeline.timeline-vertical .timeline-item.left .timeline-icon {
    right: -98px;
  }
  .timeline.timeline-vertical .timeline-item.left .timeline-arrow {
    background: linear-gradient(to bottom left, #fff 52%, transparent 48%);
    border-width: 3px 3px 0 0;
    box-shadow: 4px -4px 8px -4px rgba(0, 0, 0, 0.4);
    right: -9.5px;
  }
  .timeline.timeline-vertical .timeline-item.right {
    float: right;
    margin-right: -50px;
    border-left: 3px solid #222222;
  }
  .timeline.timeline-vertical .timeline-item.right .timeline-year {
    left: -205px;
  }
  .timeline.timeline-vertical .timeline-item.right .timeline-icon {
    left: -98px;
  }
  .timeline.timeline-vertical .timeline-item.right .timeline-arrow {
    background: linear-gradient(to top right, #fff 52%, transparent 48%);
    border-width: 0 0 3px 3px;
    box-shadow: -4px 4px 8px -4px rgba(0, 0, 0, 0.4);
    left: -9.5px;
  }
  @media (max-width: 1024px) {
    .timeline.timeline-vertical .timeline-item.left, .timeline.timeline-vertical .timeline-item.right {
      margin: 0 0 100px 50px;
      float: unset;
      border-top: 0;
      border-right: 0;
      border-bottom: 0;
      border-left: 3px solid #222222;
      width: 80%;
    }
    .timeline.timeline-vertical .timeline-item.left .timeline-icon, .timeline.timeline-vertical .timeline-item.right .timeline-icon {
      right: 0;
      left: -75px;
    }
    .timeline.timeline-vertical .timeline-item.left .timeline-year, .timeline.timeline-vertical .timeline-item.right .timeline-year {
      top: -50px;
      right: auto;
      left: 0;
    }
    .timeline.timeline-vertical .timeline-item.left .timeline-arrow, .timeline.timeline-vertical .timeline-item.right .timeline-arrow {
      background: linear-gradient(to top right, #fff 52%, transparent 48%);
      border-width: 0 0 3px 3px;
      box-shadow: -4px 4px 8px -4px rgba(0, 0, 0, 0.4);
      left: -9.5px;
    }
  }
  .timeline.timeline-horizontal {
    position: relative;
  }
  .timeline.timeline-horizontal .timeline-h-line {
    width: 100%;
    height: 4px;
    background-color: #D6D6D6;
    position: absolute;
    top: 65px;
    transform: translateY(-50%);
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list {
    padding: 100px 0 50px 0;
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track {
    display: flex;
    gap: 30px;
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track .timeline-item {
    padding: 20px 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.3);
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track .timeline-item:focus {
    outline: none;
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track .timeline-item .timeline-year {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track .timeline-item .timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track .timeline-item .timeline-icon svg {
    width: 30px;
    height: 30px;
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track .timeline-item .timeline-title {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-list .slick-track .timeline-item .timeline-description {
    font-size: 16px;
    font-weight: 300;
    margin: 10px 0 0;
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-arrow {
    opacity: 1;
    top: 65px;
    width: 40px;
    height: 40px;
  }
  .timeline.timeline-horizontal .timeline-h-wrap .slick-arrow::before {
    color: #D6D6D6;
    opacity: 1;
    font-size: 28px;
  }
  
  .elementor.elementor-116 {
    max-width: -moz-max-content;
    max-width: max-content;
  }


  /* profile widget css */

  /* General Widget Styling */
  .custom-profile-widget {
    max-width: 1260px;
    padding: 0 15px;
    margin: auto;
    text-align: center;
    font-family: "Arial", sans-serif;


    /* Profile Slider  */
    /* Profile Grid  */
    /* Button Styling  */
  }
  .custom-profile-widget .profile-slider {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner {
    display: flex;
    gap: 20px;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .profile-slide {
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .profile-slide:hover {
    transform: scale(1.05);
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .profile-slide img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .profile-slide img:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-prev,
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-next {
    background-color: #0073e6;
    border: none;
    padding: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 20px;
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-prev:hover,
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-next:hover {
    background-color: #005bb5;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-prev::before,
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-next::before {
    content: "";
    position: absolute;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -50%);
    top: 11px;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-prev {
    left: 15px;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-prev::before {
    transform: rotate(45deg);
    left: 12px;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-next {
    right: 15px;
  }
  .custom-profile-widget .profile-slider .profile-slider-inner .slick-next::before {
    transform: rotate(225deg);
    left: 9px;
  }
  .custom-profile-widget .profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  .custom-profile-widget .profile-list .profile-item {
    background: linear-gradient(135deg, #f9f9f9, #ececec);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .custom-profile-widget .profile-list .profile-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  .custom-profile-widget .profile-list .profile-item:hover::before {
    left: 100%;
  }
  .custom-profile-widget .profile-list .profile-item:hover img {
    transform: scale(1.05);
  }
  .custom-profile-widget .profile-list .profile-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
  }
  .custom-profile-widget .profile-list .profile-item img {
    max-width: 100%;
    border-radius: 12px;
    height: 150px;
    width: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .custom-profile-widget .button-staff {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 12px;
    border: 2px solid #0073e6;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .custom-profile-widget .button-staff::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
  }
  .custom-profile-widget .button-staff:hover {
    background-color: white;
    color: #0073e6;
  }
  .custom-profile-widget .button-staff:hover::before {
    left: 100%;
  }


/* social media widget css */

.social-media-widget {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Row Layout */
.layout-row {
  flex-direction: row;
}

/* Column Layout */
.layout-column {
  flex-direction: column;
}

/* Simple Style */
.social-style-simple a {
  background: none !important;
  padding: 5px !important;
}

/* Circular Icons */
.social-style-circular a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0073aa;
}

/* Boxed Style */
.social-style-boxed a {
  padding: 12px;
  border-radius: 5px;
  background: #333;
}

/* mega menu css */

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Mega Menu Styles */
.mega-menu {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
  position: relative;
}

.mega-menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.mega-menu-item {
  position: static;
}

.mega-menu-item > a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.mega-menu-item:hover > a {
  color: #0066cc;
}

.mega-submenu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mega-menu-item:hover .mega-submenu {
  display: flex;
}

.menu-left {
  width: 300px;
  padding: 20px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}

.menu-right {
  flex: 1;
  background: #e8f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 400px;
  overflow: hidden;
}

.menu-right img {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  object-fit: contain;
}

/* WordPress Menu Styles */
.wp-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-menu-item {
  margin-bottom: 10px;
}

.wp-menu-item a {
  text-decoration: none;
  color: #333;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.wp-menu-item a:hover {
  background: #f5f8ff;
  color: #0066cc;
}

.wp-menu-item i {
  color: #0066cc;
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.wp-menu-item .menu-desc {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  margin-left: 28px;
}

.menu-left a {
  text-decoration: none;
  color: #333;
  padding: 8px 10px;
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.menu-left a:hover {
  background: #f8f8f8;
}

.menu-left h3 {
  font-size: 16px;
  color: #333;
  padding: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

.menu-desc {
  font-size: 12px;
  color: #666;
  margin-top: 3px;
}

/* Category sections */
.category-section {
  margin-bottom: 20px;
}

.category-section h3 {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  padding: 0 10px 8px;
  border-bottom: 1px solid #e8e8e8;
}

.category-section ul {
  list-style: none;
}

.category-section li a {
  color: #666;
  font-size: 13px;
  padding: 6px 10px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-section li a:hover {
  color: #0066cc;
  background: transparent;
}

.category-section li a i {
  font-size: 16px;
  color: #0066cc;
  width: 20px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .mega-menu-list {
    padding: 0 15px;
  }

  .menu-right {
    min-height: 350px;
  }

  .menu-right img {
    max-width: 600px;
  }
}

@media (max-width: 1024px) {
  .mega-menu-item > a {
    padding: 12px 15px;
    font-size: 13px;
  }

  .menu-left {
    width: 250px;
    padding: 15px;
  }
  
  .menu-right {
    min-height: 300px;
    padding: 15px;
  }

  .menu-right img {
    max-width: 500px;
  }

  .menu-desc {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    position: relative;
  }

  .mega-menu-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }

  .mega-menu-item {
    position: relative;
  }

  .mega-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    max-height: 80vh;
    overflow-y: auto;
  }

  .mega-menu-item.active .mega-submenu {
    display: flex;
  }

  .menu-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    max-height: none;
  }

  .menu-right {
    min-height: 200px;
  }

  .menu-right img {
    max-width: 400px;
  }

  .wp-menu-item a,
  .custom-menu-item a {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .mega-menu-item > a {
    padding: 10px 12px;
    font-size: 12px;
  }

  .menu-left {
    padding: 10px;
  }

  .menu-right {
    min-height: 150px;
  }

  .menu-right img {
    max-width: 300px;
  }

  .menu-desc {
    display: none;
  }

  .category-section h3 {
    font-size: 13px;
    padding: 0 8px 6px;
  }

  .wp-menu-item a,
  .custom-menu-item a {
    font-size: 12px;
    padding: 8px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .mega-menu-item > a {
    cursor: pointer;
  }

  .mega-menu-item > a:active {
    color: #0066cc;
  }

  .wp-menu-item a:active,
  .custom-menu-item a:active {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.05);
  }
}

/* Scrollbar Styling */
.menu-left::-webkit-scrollbar {
  width: 6px;
}

.menu-left::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.menu-left::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.menu-left::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .mega-menu-item > a,
  .wp-menu-item a{
    transition: none;
  }
}

/* partner slider css */

.partner-slider {
  overflow: hidden;
  padding: 20px 0;
}

.partner-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto; /* Adjust for a continuous loop effect */
}

.partner-slider img {
  max-width: 80px !important;
  height: 50px !important;
  transition: transform 0.3s ease-in-out;
}

.partner-slider img:hover {
  transform: scale(1.1);
}

/* service slider css */


/* image carousel css */

