/* Default Style - Original Template Design */

.ikbase-style-default .ikbase-plugin {
    width: 100%;
    /* font-family: 'Poppins', sans-serif; */
}

/* Hero Section */
.ikbase-style-default .ikbase-hero {
    background: linear-gradient(135deg, #1e73be, #00a8ff);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

/* Hero Style Variations for Original Hero */
.ikbase-style-default .ikbase-hero.ikbase-hero-default {
    background: linear-gradient(135deg, #1e73be, #00a8ff);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-modern {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-modern::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 20%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    animation: glassFloat 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes glassFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.ikbase-style-default .ikbase-hero.ikbase-hero-minimal {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-minimal::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: lineMove 4s linear infinite;
    z-index: 0;
}

@keyframes lineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.ikbase-style-default .ikbase-hero.ikbase-hero-vibrant {
    background: linear-gradient(135deg, #fc4a1a, #f7b733);
    animation: vibrantPulse 2s ease-in-out infinite;
}

.ikbase-style-default .ikbase-hero.ikbase-hero-vibrant::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(252, 74, 26, 0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.ikbase-style-default .ikbase-hero.ikbase-hero-professional {
    background: linear-gradient(135deg, #434343, #000000);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-professional::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ikbase-style-default .ikbase-hero.ikbase-hero-dark {
    background: linear-gradient(135deg, #232526, #414345);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 10%, rgba(65, 67, 69, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(35, 37, 38, 0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.ikbase-style-default .ikbase-hero.ikbase-hero-ocean {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-ocean::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(116, 185, 255, 0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.ikbase-style-default .ikbase-hero.ikbase-hero-sunset {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-sunset::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(253, 121, 168, 0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Original Hero Back Button - Modern and Sleek */
/* Only show when hero section is disabled */
.ikbase-style-default .ikbase-original-hero-back-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: none; /* Hidden by default when hero section is disabled */
}

.ikbase-style-default .ikbase-back-to-site-original {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ikbase-style-default .ikbase-back-to-site-original:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.25);
}

.ikbase-style-default .ikbase-back-to-site-original .ikbase-back-icon {
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.ikbase-style-default .ikbase-back-to-site-original:hover .ikbase-back-icon {
    transform: translateX(-2px);
}

/* Original Hero Logo - Positioned opposite to back button */
/* Only show when hero section is disabled */
.ikbase-style-default .ikbase-original-hero-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    animation: fadeInDown 1s ease-in-out 0.2s both;
    display: none; /* Hidden by default when hero section is disabled */
}

.ikbase-style-default .ikbase-original-hero-logo-img {
    max-height: 50px;
    max-width: 180px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    object-fit: contain;
}

.ikbase-style-default .ikbase-hero-overlay {
    position: relative;
    z-index: 1;
}

.ikbase-style-default .ikbase-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.ikbase-style-default .ikbase-centered-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    animation: fadeInDown 1s ease-in-out;
    color: white;
}

.ikbase-style-default .ikbase-search-box {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9); 
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
    animation: fadeInUp 1s ease-in-out;
    position: relative;
}

.ikbase-style-default .ikbase-search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 16px;
    width: 100%;
}

.ikbase-style-default #ikbase-search-input, 
.ikbase-style-default #sticky-search-input {
    width: 100%;
    padding: 18px 60px 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em; 
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 50px !important;
    height: 100%;
    color:#000;

}
::placeholder{
    color: #00000070 !important;
    padding-left: 10px;
}

.ikbase-style-default .ikbase-search-button {
    background: #1e73be;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    transition: background 0.3s ease;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.ikbase-style-default .ikbase-search-button:hover {
    background: #0056b3;
}

/* Sticky Search */
.ikbase-style-default .ikbase-sticky-search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.ikbase-style-default .ikbase-sticky-search.sticky-active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Most Read Articles Section */
.ikbase-style-default .ikbase-most-read {
    max-width: 1100px;
    margin: 50px auto 0px auto;
    text-align: left;
    padding: 0 20px;
}

.ikbase-style-default .ikbase-most-read h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.ikbase-style-default .ikbase-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ikbase-style-default .ikbase-article-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ikbase-style-default .ikbase-article-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.15);
    border-color: #1e73be;
}

.ikbase-style-default .ikbase-article-item a {
    color: #333;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.ikbase-style-default .ikbase-article-item a:hover {
    color: #1e73be;
}

.ikbase-style-default .ikbase-arrow {
    color: #1e73be;
    font-weight: bold;
    transition: color 0.3s ease;
}

.ikbase-style-default .ikbase-article-item a:hover .ikbase-arrow {
    color: #1e73be;
}

.ikbase-style-default .ikbase-search-excerpt {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Help Topics Section */
.ikbase-style-default .ikbase-help-topics {
    max-width: 1100px;
    margin: 0px auto;
    text-align: left;
    padding: 0 20px;
}

.ikbase-style-default .ikbase-help-topics h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
    margin-top: 0px;
    padding-bottom: 13px;
    font-weight: 600;
    text-align: center;
}

.ikbase-style-default .ikbase-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    text-align: left;
}

.ikbase-style-default .ikbase-category-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e3e8ef;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ikbase-style-default .ikbase-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(30, 115, 190, 0.2);
    border-color: #1e73be;
}

.ikbase-style-default .ikbase-category-card:hover .ikbase-category-icon {
    background: linear-gradient(135deg, #0056b3, #1e73be);
    transform: scale(1.05);
}

.ikbase-style-default .ikbase-category-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e73be, #00a8ff);
    border-radius: 12px;
    margin-right: 15px;
}

.ikbase-style-default .ikbase-category-icon .ikbase-icon {
    font-size: 24px;
    color: #ffffff;
}

.ikbase-style-default .ikbase-category-icon span {
    font-size: 24px;
    color: #ffffff;
}

.ikbase-style-default .ikbase-category-icon .ikbase-category-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.ikbase-style-default .ikbase-category-content {
    flex: 1;
}

.ikbase-style-default .ikbase-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0px !important;
    border-bottom: unset !important;
    padding-bottom: 8px;
    gap: 10px;
}

.ikbase-style-default .ikbase-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ikbase-style-default .ikbase-category-count {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1e73be, #00a8ff);
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(30, 115, 190, 0.2);
}

.ikbase-style-default .ikbase-category-description {
    font-size: 18px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center !important;
}

/* Footer */
.ikbase-style-default .ikbase-main-footer {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
}

.ikbase-style-default .ikbase-plugin-footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ikbase-style-default .ikbase-plugin-footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.ikbase-style-default .ikbase-plugin-footer a {
    color: #1e73be;
    text-decoration: none;
    font-weight: 600;
}

.ikbase-style-default .ikbase-plugin-footer a:hover {
    text-decoration: underline;
}

/* Dynamic Results */
.ikbase-style-default .ikbase-dynamic-results {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ikbase-style-default .ikbase-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.ikbase-style-default .ikbase-no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.ikbase-style-default .ikbase-error {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
    background: #ffebee;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ikbase-style-default .ikbase-hero {
        padding: 60px 15px;
    }
    
        .ikbase-style-default .ikbase-original-hero-back-button {
        top: 15px;
        right: 15px;
    }

    .ikbase-style-default .ikbase-back-to-site-original {
        padding: 6px 12px;
        font-size: 13px;
        gap: 4px;
    }

    .ikbase-style-default .ikbase-back-to-site-original .ikbase-back-icon {
        font-size: 12px;
    }

    .ikbase-style-default .ikbase-original-hero-logo {
        top: 15px;
        left: 15px;
    }

    .ikbase-style-default .ikbase-original-hero-logo-img {
        max-height: 40px;
        max-width: 150px;
    }
    
    .ikbase-style-default .ikbase-centered-title {
        font-size: 28px;
    }
    
    .ikbase-style-default .ikbase-search-box {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .ikbase-style-default .ikbase-most-read,
    .ikbase-style-default .ikbase-help-topics {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .ikbase-style-default .ikbase-articles-grid,
    .ikbase-style-default .ikbase-category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ikbase-style-default .ikbase-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Space Particles Hero */
.ikbase-style-default .ikbase-hero.ikbase-hero-particle_space {
    background: linear-gradient(135deg, #0c0c0c, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.ikbase-style-default .ikbase-hero.ikbase-hero-particle_space::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    z-index: 0;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

/* Neon Cyberpunk Hero */
.ikbase-style-default .ikbase-hero.ikbase-hero-neon_cyber {
    background: linear-gradient(135deg, #0f3460, #e94560, #f16272);
    position: relative;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
}

.ikbase-style-default .ikbase-hero.ikbase-hero-neon_cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(233, 69, 96, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233, 69, 96, 0.3) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: neonGridMove 4s linear infinite;
    z-index: 0;
}

@keyframes neonGridMove {
    0% { transform: translate(0, 0); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translate(25px, 25px); opacity: 0.3; }
}

/* Nature Flow Hero */
.ikbase-style-default .ikbase-hero.ikbase-hero-nature_flow {
    background: linear-gradient(135deg, #4ecdc4, #44a08d, #093637);
    position: relative;
}

.ikbase-style-default .ikbase-hero.ikbase-hero-nature_flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(78, 205, 196, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 70%, rgba(68, 160, 141, 0.15) 0%, transparent 40%);
    animation: organicFlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes organicFlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.1) rotate(120deg); }
    66% { transform: scale(0.9) rotate(240deg); }
}

/* Aurora Lights Hero */
.ikbase-style-default .ikbase-hero.ikbase-hero-aurora_lights {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: auroraGradient 8s ease infinite;
    position: relative;
}

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

.ikbase-style-default .ikbase-hero.ikbase-hero-aurora_lights::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: auroraWave 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes auroraWave {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Vibrant Hero with Pulse Effect */
@keyframes vibrantPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.01); filter: brightness(1.1); }
} 
h1.ikbase-centered-title i {
    font-size: 58px;
    margin-right: 30px;
}
section#dynamicResults {
    display: none;
}
section#mostReadSections {
    margin-bottom: 50px;
}
.ikbase-dropdown-content{
    text-align: left;
}
input#ikbase-hero-search-input {
    font-size: 20px;
    background: #fff;
}
.ikbase-categories-sidebar {
    width: 25%;
    max-width: fit-content;
    background: #f9f9fa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
}
.ikbase-categories-sidebar h3 {
    color: #1f2937;
    font-size: 30px;
    margin: 0 0 1.5rem 0;
    padding: 0px !important;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    border: unset;
}
.ikbase-category-content {
    width: 75%;
    padding: 0px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ikbase-back-button a
 {
    color: #fff;
}
.ikbase-back-button:hover a {
    color: #fff;
}
.ikbase-article-layout-with-toc {
   
    gap: 2rem;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex !important;
    justify-content: center;
}

.ikbase-article-main-with-toc .ikbase-view-container {
  display: block !important;
}
p.ikbase-view-count {
    color: #000;
}
.ikbase-feedback-container {
    justify-content: space-between;
}
.ikbase-category-content .ikbase-category-description {
    text-align: left !important;
    font-size: 14px;
    color: #000 !important;
}
aside.ikbase-article-sidebar-right {
    display: none;
}	
.ikbase-simple-header-left img{
    height: auto !important;
}
