
.protech_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    
   
}

.protech_logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 430px; /* Fixed width for logo area */
    height: 110px; /* Fixed height for logo area */
    overflow: hidden; /* Ensures content fits within the box */
}

.protech_logo img,
.custom-logo {
    max-width: 100%;
    max-height: 115px; /* Ensures the logo image fits within the container */
}

.protech_logo_details {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
}

.protech_time,
.protech_date {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.protech_icon {
    font-size: 18px;
    margin-right: 5px;
}

.protech_time iframe,
.protech_date iframe {
    display: block;
}

.protech_on_air {
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    animation: blip-blip 1.5s infinite;
    margin-right: 15px;
}

@keyframes blip-blip {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.protech_ads_new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 750px; /* Fixed width for advertisement area */
    height: 100px; /* Fixed height for advertisement area */
   
}

.protech_ads_new img,
.ads-image {
    max-width: 100%;
    max-height: 100%; /* Ensures ad image scales to fit within the fixed container */
}

/* Dropdown Menu Styles */
.uc-navbar-nav .dropdown {
    position: relative;
}

.uc-navbar-nav .dropdown .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
}

.uc-navbar-nav .dropdown .dropdown-toggle {
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.uc-navbar-nav .dropdown .dropdown-toggle:hover {
    text-decoration: none;
    color: inherit;
    background-color: red;
}

/* Hover effect for all menu items */
.uc-navbar-nav .nav-link {
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.uc-navbar-nav .nav-link:hover {
    background-color: red;
    text-decoration: none;
    color: inherit;
}

/* Active/Current menu item styles - more comprehensive targeting */
.uc-navbar-nav .nav-link.current-menu-item,
.uc-navbar-nav .nav-link.current_page_item,
.uc-navbar-nav .nav-link.active,
.uc-navbar-nav .nav-link[aria-current="page"],
.uc-navbar-nav li.current-menu-item .nav-link,
.uc-navbar-nav li.current_page_item .nav-link,
.uc-navbar-nav li.current-menu-ancestor .nav-link,
.uc-navbar-nav li.current-page-ancestor .nav-link {
    background-color: red !important;
    text-decoration: none;
    color: inherit;
}

/* Active dropdown menu items */
.uc-navbar-nav .dropdown .dropdown-toggle.current-menu-item,
.uc-navbar-nav .dropdown .dropdown-toggle.current_page_item,
.uc-navbar-nav .dropdown .dropdown-toggle.active,
.uc-navbar-nav .dropdown .dropdown-toggle[aria-current="page"],
.uc-navbar-nav li.current-menu-item .dropdown-toggle,
.uc-navbar-nav li.current_page_item .dropdown-toggle,
.uc-navbar-nav li.current-menu-ancestor .dropdown-toggle,
.uc-navbar-nav li.current-page-ancestor .dropdown-toggle {
    background-color: red !important;
    text-decoration: none;
    color: inherit;
}

/* Target list items with active classes */
.uc-navbar-nav li.current-menu-item,
.uc-navbar-nav li.current_page_item,
.uc-navbar-nav li.current-menu-ancestor,
.uc-navbar-nav li.current-page-ancestor {
    background-color: red !important;
    border-radius: 4px;
}

.uc-navbar-nav li.current-menu-item a,
.uc-navbar-nav li.current_page_item a,
.uc-navbar-nav li.current-menu-ancestor a,
.uc-navbar-nav li.current-page-ancestor a {
    background-color: transparent !important;
    color: inherit;
}

.uc-navbar-nav .dropdown .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.uc-navbar-nav .dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.uc-navbar-nav .dropdown .sub-menu li {
    margin: 0;
    padding: 0;
}

.uc-navbar-nav .dropdown .sub-menu .dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.uc-navbar-nav .dropdown .sub-menu .dropdown-item:last-child {
    border-bottom: none;
}

.uc-navbar-nav .dropdown .sub-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2f772d;
}

/* Dark theme support */
.uc-dark .uc-navbar-nav .dropdown .sub-menu {
    background: #333;
    border-color: #555;
}

.uc-dark .uc-navbar-nav .dropdown .sub-menu .dropdown-item {
    color: #fff;
    border-bottom-color: #555;
}

.uc-dark .uc-navbar-nav .dropdown .sub-menu .dropdown-item:hover {
    background-color: #444;
    color: #2f772d;
}


@media (max-width: 768px) {
    .protech_header {
        flex-direction: column;
        align-items: center; /* Aligns all elements in the center */
        text-align: center;
    }
	
	.protech_logo_details{
		margin-right: 25px;
	}

    .protech_logo {
        width: 100%; /* Adjusts to screen width on smaller devices */
        height: auto;
        display: flex;
        align-items: center; /* Centers content vertically */
        justify-content: center; /* Centers content horizontally */
    }

    .protech_ads_new {
        margin-top: -20px;
		margin-bottom: -30px;
        width: 100%; /* Adjusts to screen width on smaller devices */
        display: flex;
        align-items: center; /* Centers ads vertically */
        justify-content: center; /* Centers ads horizontally */
    }
}


/* removing ads space */
.protech_ads_new:empty {
    display: none;
}


/* second footer */

.protech_footer-content {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    color: #fff;
}

.protech_footer-content p {
    margin: 5px 0; /* Reduced vertical gap */
    font-size: 16px;
}

.protech_footer-content i {
    color: rgb(247, 255, 164);
    margin-right: 8px;
}

.protech_footer-content a {
    text-decoration: none;
    color: #fff;
}

.protech_footer-content a:hover {
    text-decoration: none;;
    color: rgb(255, 189, 7);
}


/* skip ads -----------------------------------------*/


	
  /* Modal Container */
  #protech_ads_roadblock-ad {
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Transparent background */
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px; /* Prevent content from touching edges */
    box-sizing: border-box;
  }

  /* Modal Content */
  #protech_ads_roadblock-ad .protech_ads_ad-content {
    width: fit-content; /* Adjust width based on content */
    max-width: none; /* Remove max-width to prevent excessive width */
    max-height: 90vh; /* Prevent exceeding 90% of viewport height */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* "Skip Ad" button at the bottom */
    overflow: hidden;
    padding: 10px; /* Optional: Add padding for better appearance */
  }

  /* Image Styling */
  #protech_ads_roadblock-ad img {
    max-width: 100%;
    max-height: calc(90vh - 60px); /* Leave room for the "Skip Ad" button */
    object-fit: contain; /* Scale the image without distortion */
    display: block;
    margin: auto;
   
  }

  /* Skip Ad Button */
  #protech_ads_skip-ad {
    margin-top: 3px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #2f772d;
    color: #fff;
    align-self: center; /* Center the button horizontally */
    flex-shrink: 0; /* Prevent the button from being resized */
    display: block;
  }

  #protech_ads_skip-ad:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  /* Responsive Adjustments */
  @media (max-width: 480px) {
    #protech_ads_roadblock-ad .protech_ads_ad-content {
      max-width: 100%; /* Shrink width for smaller screens */
      width: 100%; /* Take full width initially */
    }

    #protech_ads_skip-ad {
      font-size: 12px;
      padding: 8px 16px;
    }
  }



  /* new header css */

  

.header-module {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2f772d; /* Light blue background */
    
    border-bottom: 1px solid #ff0000;
    height: 40px; /* Adjust height to match the image */
    padding: 0; /* Remove padding */
    margin-bottom:-15px; /* Add 10px margin to the bottom */
  }
  
  .left-box {
    background-color: #2f772d; /* Blue background */
    padding: 0 10px; /* Padding inside the left box */
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 40px; /* Vertical align text */
  }
  
  .right-box {
    padding-right: 10px; /* Adjust right-side padding */
  }
  
  .see-all-link {
    color: #fff700; /* Blue link color */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px; /* Vertically align the link text */
  }
  
  .see-all-link:hover {
    text-decoration: none;;
  }
  
  /* Attractive Search Icon Styling */
  .uc-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f772d 0%, #2f772d 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-right: 20px;
  }
  
  .uc-search-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
      background: linear-gradient(135deg, #2f772d 0%, #2f772d 100%);
  }
  
  .uc-search-trigger:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
  }
  
  .uc-search-trigger .unicon-search {
    font-size: 18px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    position: relative;
  }
  
  .uc-search-trigger:hover .unicon-search {
    transform: scale(1.1);
    color: #f8f9fa;
  }
  
  /* Search icon pulse animation on hover */
  .uc-search-trigger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
  }
  
  .uc-search-trigger:hover::before {
    width: 100%;
    height: 100%;
  }
  
  /* Ensure the entire area is clickable */
  .uc-search-trigger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
    z-index: 0;
  }
  
  /* Responsive adjustments for search icon */
  @media (max-width: 768px) {
    .uc-search-trigger {
      width: 36px;
      height: 36px;
    }
    
    .uc-search-trigger .unicon-search {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .uc-search-trigger {
      width: 32px;
      height: 32px;
    }
    
    .uc-search-trigger .unicon-search {
      font-size: 14px;
    }
  }
  

  .menu-font {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

 






/* category start */

.radio_category_trending-nav .uk-subnav-pill > .uk-active > span {
  color: #fff !important;
  font-size: 23px !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-left: 5px solid #ff0000;
  border-top-right-radius: 50px;
  border-right: 8px solid #ff0000;
  padding: 4px 30px;
  background-color: #2f772d !important;
  text-indent: -20px !important;
  display: inline-block;
}

.radio_category_trending-nav .uk-subnav-pill > li > a {
  color: #2f772d !important;
  font-size: 23px !important;
  font-family: 'Mukta', sans-serif;
  font-weight: 600;
  border-left: 5px solid #ff0000;
  border-top-right-radius: 50px;
  border-right: 8px solid #ff0000;
  padding: 4px 23px;
}

.radio_category_globe-nav-recent {
  background: #858585;
  margin: 0px;
  justify-content: space-between;
}

.custom-subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -20px;
  padding: 0;
  list-style: none;
}

/* Additional styling to match the image layout */
.radio_category_trending-nav {
  display: flex;
  width: 100%;
  margin: 20px 0;
}

.radio_category_globe-nav-recent {
  display: flex;
  width: 100%;
  background: #858585;
  padding: 0;
  margin: 0;
}

.radio_category_trending-nav .uk-subnav-pill > li {
  margin: 0;
  padding: 0;
}

.radio_category_trending-nav .uk-subnav-pill > li:first-child {
  flex: 0 0 auto;
}

.radio_category_trending-nav .uk-subnav-pill > li:last-child {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}

.radio_category_trending-nav .uk-subnav-pill > li:last-child > a {
  background-color: transparent !important;
  border: none !important;
  color: #020004 !important;
  padding: 4px 0 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.radio_category_trending-nav .uk-subnav-pill > li:last-child > a:hover {
  color: rgb(100, 1, 1) !important;
  text-decoration: none !important;
}

/* category end */


 