 /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: #ffffff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .back-to-top.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

/* ========================= CRITICAL NAVBAR STYLES ========================= */

/* ========================= CRITICAL NAVBAR STYLES ========================= */

#navbar-host {
    position: relative;
    z-index: 1000;
    height: 82px;
    width: 100%;
}

/* Premium Loading Animation */
#navbar-host:empty {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    overflow: hidden;
}

#navbar-host:empty::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #667eea 0%,
        #764ba2 25%,
        #667eea 50%,
        #764ba2 75%,
        #667eea 100%
    );
    background-size: 400% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#navbar-host:empty::after {
    content: '';
    width: 140px;
    height: 24px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.2) 25%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.2) 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ================= NAVBAR CORE ================= */

.navbar {
    height: 82px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100% !important;
    overflow: visible !important;
    transition: all 0.3s ease;
}

.navbar * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CONTAINER */
.navbar .nav-container {
    width: 100%;
    height: 100%;
    padding: 6px 20px;
}

/* NAV CONTENT (merged base + override) */
.navbar .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* override preserved */
}

/* LOGO (merged base + desktop override handled below) */
.navbar .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 12px;
}

/* ACTION WRAPPER */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ACTION ICONS (merged normal + final fix) */
.nav-actions .action-icons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ICON BUTTON */
.nav-actions .icon-btn {
    flex: 0 0 auto;
    padding: 6px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
}

.nav-actions .icon-btn svg {
    width: 20px;
    height: 20px;
    color:#FFFFFF;
}

/* DESKTOP NAV (base hidden) */
.navbar .desktop-nav {
    display: none;
    gap: 20px;
    white-space: nowrap;
}

/* NAV LINK */
.navbar .nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.navbar .nav-link svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: fill 0.25s ease;
}

/* ================= MOBILE MENU CORE ================= */
/* MOBILE MENU BUTTON */
.navbar .mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    margin-left: auto; /* Align to right */
}

/* MOBILE MENU */
.navbar .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100% !important;
    background: #ffffff;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 99999;
    overflow-x: hidden !important;
    overflow-y: auto;
}

/* OPEN STATE */
.navbar .mobile-menu.open {
    transform: translateX(0);
}

/* MOBILE TOP BAR */
.mobile-menu-top {
    background: #f5f5f7;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* MOBILE TOP LOGO */
.mobile-menu-top .logo-text {
    color: #000 !important;
    font-size: 1.15rem;
    font-weight: 700;
}

/* MOBILE MENU CLOSE BUTTON */
#close-mobile-menu {
    background: #f0f0f0;           /* light circular background */
    border: none;
    border-radius: 50%;             /* circular shape */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0;                   /* hide default ✕, we'll use pseudo-elements */
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* subtle shadow */
    position: relative;             /* needed for pseudo-elements */
}

/* Hover effect */
#close-mobile-menu:hover {
    background: #333;               /* dark background on hover */
    color: #fff;                    /* cross turns white */
    transform: scale(1.1);          /* subtle zoom effect */
}

/* Cross lines using pseudo-elements */
#close-mobile-menu::before,
#close-mobile-menu::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transition: all 0.3s ease;
}

#close-mobile-menu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#close-mobile-menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* MOBILE SEARCH BAR (MENU INSIDE ONLY) */
.mobile-search {
    padding: 10px 18px;
    background: #f3f4f6;
    border-radius: 40px;
    margin: 20px;
    display: flex;
    gap: 8px;
}

.mobile-search input {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
}

/* MOBILE NAV – FULL AUTO SCROLL */
.mobile-nav {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding-bottom: 40px;
}

.mobile-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 4px;
}

/* MOBILE NAV LINKS – BIGGER + BOLD (UNIVERSAL) */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    font-size: 1.20rem !important;
    font-weight: 700 !important;
    color: #000000;
    text-decoration: none;
}

.mobile-nav-link svg {
    width: 28px !important;
    height: 28px !important;
}

/* MOBILE SOCIAL ICONS */
.mobile-social {
    display: flex;
    gap: 16px;
    padding: 20px;
}

.mobile-social svg {
    width: 26px;
    height: 26px;
}

/* REMOVE MOBILE SEARCH TOP RIGHT ICON */
.nav-actions .search-container {
    display: none; /* Mobile search handled in menu only */
}

/* =========================================================
   DEFAULT (MOBILE + TABLET: 0px – 1024px)
   ========================================================= */

/* Show mobile buttons */
.navbar .mobile-menu-btn,
.navbar .mobile-search {
    display: flex;
}
/* ================= DESKTOP ================= */

@media (min-width: 1025px) {

    .navbar .desktop-nav {
        display: flex;
        gap: 24px;
        align-items: center;
        flex-wrap: nowrap;
        position: absolute;      /* merged override */
        left: 50%;               /* merged override */
        transform: translateX(-50%); /* merged override */
    }

    .navbar .mobile-menu-btn,
    .navbar .mobile-search {
        display: none;
    }

    .navbar .nav-content {
        padding: 0 20px;
    }

    .navbar .nav-link {
        font-size: 1.12rem;
        font-weight: 650;
        letter-spacing: 0.3px;
    }

    .navbar .logo-text {
        font-size: 1.45rem;
        font-weight: 800;
    }
}

/* ================= HOVER ================= */

@media (hover: hover) {
    .navbar .nav-link:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
    }

    .navbar .nav-link:hover svg {
        fill: #dc2626;
    }
}


/* =========================================================
     Global PREMIUM SEARCH MODAL 
   ========================================================= */

/* 1. Light Overlay  */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light premium overlay */
    background: rgba(15, 23, 42, 0.45); 
    z-index: 999999;
    display: none; 
    padding: 10px;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    /* Blur nikaal diya hai taake page clean lage */
    backdrop-filter: none;
}

/* 2. Container - 600px Limited & Responsive */
.search-container {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    margin-top: 50px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* 3. Header - Specific to avoid clashing */
.search-container .search-header {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #edf2f7;
    align-items: center;
    background: #ffffff;
    flex-shrink: 0;
}

/* Input Specificity Fix */
.search-header input#globalSearchInput {
    flex: 1;
    border: none !important;
    outline: none !important;
    font-size: 16px;
    padding: 10px;
    color: #1a202c;
    background: transparent;
    text-align: left; /* Input typing starting position left alignment */
}

/* Close Button Fix - Using ID to ensure footer icons don't change */
#closeSearch {
    background: #f1f5f9;
    border: none !important;
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    cursor: pointer;
    font-size: 16px;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    /* Resetting any global button styles */
    min-width: auto !important;
    min-height: auto !important;
}

/* 4. Results List - Internal Scroll Only */
.search-results-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
}

/* 5. Search Items - FIXED FOR LEFT-ALIGNMENT & ROW FORMAT */
.search-container .search-item {
    display: flex !important;
    flex-direction: row !important; /* Image/Icon side par aye aur content aage */
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.search-container .search-item:last-child { border-bottom: none; }
.search-container .search-item:hover { background: #f1f5f9; }

/* Wrapper for title and category inside results */
.search-container .search-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start !important;
    text-align: left !important;
}

/* Title Styling inside modal */
.search-container .search-title {
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-align: left !important;
    margin: 0;
}

/* Category Subtext Styling inside modal */
.search-container .search-category {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left !important;
    margin: 0;
}

/* Legacy tag mappings compatibility fallback */
.search-container .search-item strong {
    color: #667eea;
    font-size: 15px;
    margin-bottom: 2px;
    display: block;
    text-align: left !important;
}

.search-container .search-item span {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left !important;
}

/* Scrollbar Styling */
.search-results-list::-webkit-scrollbar { width: 5px; }
.search-results-list::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

/* 6. Body Lock Fix */
body.modal-open {
    overflow: hidden !important;
    height: 100vh;
}

/* 7. Mobile Friendly */
@media (max-width: 640px) {
    .search-container {
        margin-top: 20px;
        width: calc(100% - 10px);
        max-height: 85vh;
    }
}
/* =========================================================
               SVG Icon style
   ========================================================= */
/* Base icon styles */
.icon {
  width: 20px;
  height: 20px;
  fill: #FFD700;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

/* Tool card specific styles */
.tool-card .icon {
  width: 36px;
  height: 36px;
  display: block;
  margin: 0 auto 0.5rem;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  line-height: 1;
}
/* ✅ Mobile: Icon size small */
/* Navbar icon styles */
.tool-nav-link .icon {
    width: 26px;
    height: 26px;
    fill: var(--primary-color);
    margin-bottom: 4px;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    overflow: visible;
}

/* ✅ Hover effect */
.tool-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tool-nav-link:hover .icon {
    fill: var(--accent-color);
}

/* ✅ Text under icon */
.tool-nav-link span {
    font-size: 0.90rem;
    font-weight: 600; 
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}
/* ✅ Desktop View */
@media (min-width: 768px) {
    .tool-nav-links {
        justify-content: center;
        gap: 20px;
    }

    .tool-nav-link {
        flex-direction: row;
        padding: 10px 15px;
        flex: 0 0 auto;
    }

    .tool-nav-link .icon {
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
    }

    .tool-nav-link span {
        font-size: 1.1rem;
        font-weight: 630;
    }
}
/* Large icon variant */
.icon-lg {
  width: 40px;
  height: 40px;
}

/* color variants */
.icon-primary {
  fill: #4A90E2;
}
.icon-gold {
  fill: #FFD700;
}
.icon-pink {
  fill: #ff3366;
}
.icon-accent {
  fill: #FF6B6B;
}

/* Hover Effect */
.icon:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
/* =========================================================
   ✅ Hard-Isolated Footer (No parent effect possible) 
   ========================================================= */
/* =========================
   FINAL MERGED FOOTER CSS
========================= */

#site-footer {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 80px 10% 40px;
    font-family: 'Poppins', sans-serif;
}

/* Container */
#site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Logo section */
#site-footer .footer-logo h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

#site-footer .footer-logo p {
    color: #bbb;
    font-size: 14px;
}

/* Columns */
#site-footer .footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
}

/* Sub heading */
#site-footer .sub-heading {
    display: block;
    margin: 15px 0 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Links */
#site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#site-footer ul li {
    margin-bottom: 10px;
}

#site-footer ul li a {
    color: #b0bfc6;
    text-decoration: none;
    font-size: 14px;
}

#site-footer ul li a:hover {
    color: #fff;
}

/* CTA Buttons */
#site-footer .cta-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#site-footer .btn {
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

#site-footer .btn-light {
    background: #cbd5e0;
    color: #222;
}

#site-footer .btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* Bottom */
#site-footer .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* Social */
#site-footer .social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#site-footer .social-icons a {
    color: #fff;
    font-size: 18px;
}

footer h1, footer h2, footer h3 {
    color: inherit !important;
}
/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    #site-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile */
@media (max-width: 359px) {
    #site-footer .footer-content {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   ULTRA-PREMIUM HERO SEARCH
========================================= */

.hero-search-wrapper {
    position: relative;
    width: 100%;
    max-width: min(640px, 100%);
    margin: 50px auto;
    z-index: 100;
    box-sizing: border-box;
}

.hero-search {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background: #f8fafc;
    border-radius: 50px;
    padding: 10px 15px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 40px rgba(0,0,0,.20);
    transition: all .4s cubic-bezier(.165,.84,.44,1);
    overflow: hidden;
}

/* Focus */

.hero-search:focus-within {
    background: #f8fafc;
    border-color: rgba(255,255,255,.15);
    box-shadow: 0 0 20px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

/* Input */

.hero-search input{
    flex:1;
    min-width:0;
    background:transparent;
    border:none;
    outline:none !important;
    padding:12px 20px;
    color:#1a202c !important;
    font-size:1rem;
    font-weight:500;
    pointer-events:auto !important;
}

.hero-search input::placeholder{
    color:rgba(0,0,0,.40) !important;

}

/* Button */

.hero-search button{
    white-space:nowrap;
    border:none;
    cursor:pointer;
    padding:10px 16px;
    border-radius:40px;
    background:linear-gradient(135deg,#ff3366,#ff6b95);
    color:#fff;
    font-weight:800;
    font-size:.85rem;
    letter-spacing:1.5px;
    transition:.3s;
    box-shadow:0 10px 20px rgba(255,51,102,.30);

}

.hero-search button:hover{
    transform:scale(1.05);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    filter:brightness(1.1);

}

/* =========================================
   SEARCH RESULTS
========================================= */
.search-results.hero-only{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    width:100%;
    box-sizing:border-box;
    max-height:350px;
    overflow-y:auto;
    overflow-x:hidden;
    background:#fff !important;
    border:1px solid #eee;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    padding:10px 0;
    z-index:9999;
    display:none;

}
/* Result Item */

.search-results.hero-only .search-item{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    width:100%;
    box-sizing:border-box;
    padding:12px 18px;
    color:#1a202c !important;
    text-decoration:none;
    font-size:1rem;
    font-weight:500;
    line-height:1.2;
    border-bottom:1px solid #f5f5f5;
    transition:all .25s ease;

}
.search-results.hero-only .search-item:last-child{
    border-bottom:none;

}
.search-results.hero-only .search-item:hover{
    background:#fff5f7 !important;
    color:#1a202c !important;
    padding-left:24px;

}
/* Scrollbar */

.search-results.hero-only::-webkit-scrollbar{
    width:6px;

}
.search-results.hero-only::-webkit-scrollbar-track{
    background:transparent;
}
.search-results.hero-only::-webkit-scrollbar-thumb{
    background:#ddd;
    border-radius:10px;

}

/* =========================================
   TABLET
========================================= */

@media (max-width:768px){
    .hero-search-wrapper{
        max-width:90%;
        margin:30px auto;
    }
    .hero-search input{
        padding:12px 15px;
        font-size:.95rem;
    }
    .hero-search button{
        padding:10px 16px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:480px){
    .hero-search{
        border-radius:85px;
        padding:8px;
    }
    
    .hero-search input{
        padding:10px 12px;
        font-size:.9rem;
    }
    
    .hero-search button{

        padding:10px 15px;
        font-size:.8rem;
    }
    .search-results.hero-only{
        max-height:240px;
    }
    .hero-search-wrapper{
        width:100%;
        max-width:95%;
    }
}

/* Navigation */
body.nav-open .hero-search-wrapper{
    z-index:1 !important;
}
/* =========================================
  Blog list container 
========================================= */
.search-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.search-item img{

    width:72px;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;

}

.search-content{

    display:flex;
    flex-direction:column;
    gap:4px;

}

.search-title{

    font-size:.95rem;
    font-weight:600;
    color:#111;

}

.search-category{

    font-size:.8rem;
    color:#777;

}

.no-result{

    padding:18px;
    justify-content:center;
    color:#777;

}
.search-tool-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f7;
    border-radius: 8px;
    flex-shrink: 0;
}

/* =====================================================
   SKELETON LOADING UI (PREMIUM SHIMMER)
===================================================== */
.card-skeleton {
    background: radial-gradient(circle at top left, rgba(30, 30, 30, 0.85), rgba(10, 10, 10, 0.95)) !important;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

/* Pulsing/Shimmer element */
.card-skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: translateX(-100%);
    animation: skeleton-shimmer 1.6s infinite linear;
    z-index: 4;
}

/* Shimmer Keyframe */
@keyframes skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Inside elements of skeleton */
.skeleton-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.skeleton-title {
    width: 65%;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-bottom: 15px;
}

.skeleton-text {
    width: 85%;
    height: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 8px;
}
.skeleton-text.short {
    width: 50%;
}
/* ==========================================================
   Universal Ad Slot
========================================================== */

.ad-slot {

    position: relative;

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-block: 32px;

    box-sizing: border-box;

    overflow: hidden;

    clear: both;

}


/* ==========================================================
   All injected elements
========================================================== */

.ad-slot>*{

    display:flex;

    justify-content:center;

    align-items:center;

    max-width:100%;

    box-sizing:border-box;

}


/* ==========================================================
   iframe
========================================================== */

.ad-slot iframe{

    display:block;

    border:0;

    margin:0 auto;

}


/* ==========================================================
   Images
========================================================== */

.ad-slot img{

    display:block;

    max-width:100%;

    height:auto;

}


/* ==========================================================
   Loading State
========================================================== */

.ad-slot.is-loading{

    pointer-events:none;

}


/* ==========================================================
   Loaded
========================================================== */

.ad-slot.is-loaded{

    opacity:1;

}


/* ==========================================================
   Empty
========================================================== */

.ad-slot.is-empty{

    display:none!important;

}


/* ==========================================================
   Primary
========================================================== */

.ad-slot[data-role="primary"]{

    min-height:90px;

}


/* ==========================================================
   Content
========================================================== */

.ad-slot[data-role="content"]{

    min-height:250px;

}


/* ==========================================================
   Grid
========================================================== */

.ad-slot[data-role="grid"]{

    min-height:120px;

}


/* ==========================================================
   Partner
========================================================== */

.ad-slot[data-role="partner"]{

    min-height:120px;

}


/* ==========================================================
   Desktop
========================================================== */

@media (min-width:1024px){

    .ad-slot{

        margin-block:40px;

    }

}


/* ==========================================================
   Tablet
========================================================== */

@media (min-width:768px) and (max-width:1023px){

    .ad-slot{

        margin-block:32px;

    }

}


/* ==========================================================
   Mobile
========================================================== */

@media (max-width:767px){

    .ad-slot{

        margin-block:24px;

        padding-inline:12px;

    }


    .ad-slot iframe{

        max-width:100%;

    }

}


/* ==========================================================
   Ultra Small Devices
========================================================== */

@media (max-width:360px){

    .ad-slot{

        padding-inline:8px;

    }

}
