/* Container tweaks */
#wp125adwrap_2c {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Individual ad box styling */
.wp125ad {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover scale + shadow effect */
.wp125ad:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Image inside ad */
.wp125ad img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

/* Glare effect overlay */
.wp125ad::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Animate glare on hover */
.wp125ad:hover::after {
    animation: glareMove 1.2s forwards;
}

@keyframes glareMove {
    0% { left: -75%; }
    100% { left: 125%; }
}
/* Container tweaks with top padding */
#wp125adwrap_2c {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding-top: 10px; /* added top padding */
}/* ==============================
   Advanced Themer Footer Menu
============================== */
#at12-footer-menu {
    position: fixed;
    bottom: 20px;
    right: 74px!important; /* updated position */
    z-index: 99999;
    font-size: 24px;
    cursor: pointer;
}

/* Icon styling for Advanced Themer */
#at12-footer-menu span {
    display: inline-block;
    background: #0077ff;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

/* Popup list */
#at12-footer-menu ul {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #003366;
    color: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    min-width: 220px; 
}

#at12-footer-menu ul li a {
    padding: 8px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, outline 0.2s, border-radius 0.2s;
}

#at12-footer-menu ul li a:hover {
    background: #66b3ff;
    outline: 1px solid yellow;
    border-radius: 5px;
}

/* ==============================
   WP Tools / Utility Footer Menu
============================== */
#wp-tools-footer-menu {
    position: fixed;
    bottom: 20px;
    right: 305px!important; /* 250px to the left of Advanced Themer menu */
    z-index: 99999;
    font-size: 24px;
    cursor: pointer;
}

/* Icon styling for WP Tools */
#wp-tools-footer-menu span {
    display: inline-block;
    background: #0077ff;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

/* Popup list */
#wp-tools-footer-menu ul {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #003366;
    color: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    min-width: 220px;
}

#wp-tools-footer-menu ul li a {
    padding: 8px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, outline 0.2s, border-radius 0.2s;
}

#wp-tools-footer-menu ul li a:hover {
    background: #66b3ff;
    outline: 1px solid yellow;
    border-radius: 5px;
}
    /* Icon bubbles */
    .footer-tab-item span.icon {
        display: inline-block;
        background: #0077ff; /* blue bubble */
        color: #ffdd00!important; /* yellow gear icons */
        padding: 12px 16px;
        border-radius: 5px; /* rounded 5px */
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        font-size: 22px;
        transition: transform 0.2s;
		position: relative;
    }
.footer-tab-item span.icon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #0077ff transparent transparent transparent;
}
    /* Logo styling */
    .footer-tab-item img {
        max-height: 100px; /* increased size */
        display: block;
        border-radius: 5px 5px 0 0; /* top corners rounded */
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        padding-bottom: 5px; /* spacing under the logo */
    }

.footer-tab-item span.icon i {
    color: #ffdd00!important; /* yellow gears */
    font-size: 22px;
}
#footer-unified-tab {
    position: fixed;
    bottom: 0;
    right: 80px;
    display: flex;
    align-items: flex-end;
    background: #003366!important; /* same as titles */
    border-top: 2px solid #ffdd00; /* clean yellow accent */
    border-radius: 8px 8px 0 0;
    padding: 12px 20px;
    z-index: 99999;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.45);
}

.footer-tab-item .tab-title {
    background: #003366;
    color: #ffdd00;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 6px 6px 0 0;
    margin-bottom: 0; /* remove gap */
    font-size: 14px;
}/* Target all icons in both menus */
#at12-footer-menu span i,
#wp-tools-footer-menu span i,
.footer-tab-item span.icon i {
    color: #ffdd00 !important; /* yellow */
}/* Strongest selector for all footer icons */
#at12-footer-menu span i,
#wp-tools-footer-menu span i,
.footer-tab-item span.icon i,
#at12-footer-menu span.icon i,
#wp-tools-footer-menu span.icon i {
    color: #ffdd00 !important; /* enforce yellow */
}

/* Keep hover states yellow too */
#at12-footer-menu span i:hover,
#wp-tools-footer-menu span i:hover,
.footer-tab-item span.icon i:hover {
    color: #ffdd00 !important;
}
#at12-footer-menu span i,
#wp-tools-footer-menu span i,
.footer-tab-item span.icon i {
    color: #ffdd00 !important; /* this will beat inline styles */
}.footer-tab-item img {
  
  padding-bottom: 69px;
}