
.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 */
}

@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: #007bff;
    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: #1b541b; /* 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: #1b541b; /* 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, #667eea 0%, #764ba2 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, #764ba2 0%, #667eea 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;
    }
  }
  