
.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: 80px; /* 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: underline;
    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: #f0f4ff; /* Light blue background */
    
    border-bottom: 2px solid #e00405;
    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: #00609e; /* 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: #199eff; /* 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: underline;
  }
  