/*
Theme Name: Inkora
Author: talha7766
Author URI: https://profiles.wordpress.org/talha7766/
Description: Inkora is a clean, modern, and highly flexible WordPress theme designed specifically for news portals, online magazines, and professional blogs. With a strong focus on readability, performance, and user experience, Inkora provides a perfect platform for publishing news articles, stories, and blog posts in a visually appealing layout.
Version: 1.0.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: inkora
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*=============================================
=            TABLE OF CONTENTS            =
=============================================

01. Normalize & Base Styles
02. Variables
03. Typography
04. Layout Structure
05. Header & Navigation
06. Top Header & Breaking News
07. Posts & Archives
08. Single Post
09. Comments
10. Sidebar & Widgets
11. Footer
12. Pagination
13. Breadcrumb
14. Author Box
15. Related Posts
16. Share Buttons
17. Tags
18. Dark Mode
19. Preloader
20. Scroll to Top
21. Utilities & Helpers
22. Responsive
23. 404
=============================================*/

/*===============================
=    01. Normalize & Base       =
===============================*/

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    background: radial-gradient(#0000004f 8%, transparent 8%) 0 0, 
                radial-gradient(#000000b5 8%, #0000 8%) 8px 8px, 
                radial-gradient(rgba(217, 217, 217, 0.53) 8%, #0000 2%) 0 1px, 
                radial-gradient(rgba(217, 217, 217, 0.1) 15%, transparent 2%) 0 9px;
    background-size: 15px 16px;
}

body.boxed {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.23);
}

.site {
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*===============================
=       02. Variables           =
===============================*/

:root {
    --theme-border-color: #2398bc;
    --inkora-primary: #2398bc;
    --inkora-secondary: #ccc;
    --transition: 0.3s ease;
}

/*===============================
=       03. Typography          =
===============================*/

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-family: "Archivo Narrow", sans-serif;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #717171;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3700b3;
}

/*===============================
=     04. Layout Structure      =
===============================*/

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.inkora-layout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
}

.left-sidebar {
    grid-template-columns: 320px minmax(0, 1fr);
}

.right-sidebar {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.full-width {
    display: block;
}

.full-width .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
}

.full-width .entry-header,
.full-width .entry-footer {
    max-width: 1200px;
    margin: 0 auto;
}

.content .grid:nth-of-type(3) {
    margin-right: 0;
}

/*===============================
=     05. Header & Navigation   =
===============================*/

.site-header {
    width: 100%;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.inkoracontainerheader {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.layout-2 .inkoracontainerheader {
	justify-content: center;
}
.inkoracontainerheader > div:first-child {
    display: flex;
    align-items: center;
}

.inkoracontainerheader > div:last-child {
    display: flex;
    align-items: center;
    gap: 25px;
}
.site-title {
	margin:0;
}
.site-branding .site-title a {
  font-size: 70px;
  font-weight: 700;
  text-decoration: none;
  font-family: Calibri;
  margin: 0;
  display: inline-block;
  border-top: 5px solid var(--inkora-primary);
  padding-top: 0px;
  line-height: 1;
  font-style: italic;
  color: var(--inkora-primary);
}

/* ================= NAV BASE ================= */
.main-navigation {
  position: relative;
  z-index: 1000;
}
.menu-manin-menu-container {
  max-width: 1170px;
  margin: 0px auto;
}
body.boxed .menu-manin-menu-container {
  max-width: 1200px;
  margin: 0px auto;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation a {
  text-decoration: none;
  display: block;
  padding: 14px 18px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.menu-item-has-children {
  position: relative;
}
.current-menu-item > a, .current-menu-parent > a, .current-menu-ancestor > a {
  background: var(--inkora-primary);
  color: #FFFFFF;
}
.main-navigation {
  position: relative;
  border-top: 2px solid var(--theme-border-color);
  border-bottom: 2px solid var(--theme-border-color);
}
/* ================= DESKTOP ================= */
@media (min-width:992px) {
  .menu-toggle,
  .drawer-close {
    display: none !important;
  }
  
  .nav-menu {
    display: flex !important;
  }
  
  .nav-menu > li {
    position: relative;
  }
  
  /* Fix: Parent menu items */
  .nav-menu > li > a {
    position: relative;
    display: block;
    padding: 14px 18px;
  }
.nav-menu > li > a:hover {
    background:var(--inkora-primary);
	color:#FFFFFF;
  }

  
  /* CRITICAL FIX: Dropdown styles */
    .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: block;
  }
  
  /* Fix: Show dropdown on hover */
  .nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Fix: Third level dropdown */
  .sub-menu .sub-menu {
    left: 100%;
    top: 0px;
  }
  
  /* Fix: Dropdown items */
  .sub-menu li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
  }

  
  .sub-menu a {
    padding: 12px 20px;
    white-space: nowrap;
    
  }
  
  .sub-menu a:hover {
    background: var(--inkora-primary);
    color:#FFFFFF;
  }
  
  /* Fix: Desktop Arrow */
  .menu-item-has-children > a {
    position: relative;
    padding-right: 35px;
  }
  
  .menu-item-has-children > a::after {
    content: "▾";
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: 0.3s ease;
  }
  
  .menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  /* Fix: Sub-menu items with children */
  .sub-menu .menu-item-has-children > a::after {
    content: "▸";
    right: 15px ;
  }
  
  /* Fix: Remove mobile styles on desktop */
  .submenu-toggle, .mobile-nav {
    display: none !important;
  }
  
  /* Fix: Ensure proper stacking */
  .main-navigation {
    position: relative;
    z-index: 1000;
  }
  
}

/* ================= MOBILE ================= */
@media (max-width:991px) {
  /* Hamburger */
  .menu-toggle {
    position: relative;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
	margin-top: 5px;
  }
  
  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    transition: var(--transition);
  }
  
  .menu-toggle::before { top: 0; }
  .menu-toggle::after { bottom: 0; }
  .menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .main-navigation.toggled .menu-toggle::before {
    transform: rotate(45deg);
    top: 40%;
  }
  
  .main-navigation.toggled .menu-toggle::after {
    transform: rotate(-45deg);
    bottom: 50%;
  }
  
  .main-navigation.toggled .menu-toggle span {
    opacity: 0;
  }
  
  /* Fixed: Drawer */
  .menu-manin-menu-container {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    transition: 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    padding-top: 70px;
    z-index: 1001;
    overflow-y: auto; /* Scroll for long menus */
  }
  
  .main-navigation.toggled .menu-manin-menu-container {
    right: 0;
	z-index: 10000;
  }
  
  /* Fixed: Overlay */
  .main-navigation::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    pointer-events: none;
  }
  
  .main-navigation.toggled::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Fixed: Vertical menu styles */
  .nav-menu {
    margin: 0;
  }
  
  .nav-menu li {
    position: relative;
  }
  
  .nav-menu a {
    padding: 15px 20px;
	border-bottom: 1px solid #eee
  }
  
  /* Fixed: Submenu */
  .sub-menu {
    display: none;
    background: #f9f9f9;
    padding-left: 20px;
  }
  
  li.focus > .sub-menu {
    display: block;
  }
  
  .sub-menu .sub-menu {
    background: #f5f5f5;
  }
  
  /* Fixed: Mobile Toggle Icon */
  .submenu-toggle {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    background: #f0f0f0;
    border-radius: 4px;
    z-index: 10;
  }
  
  .submenu-toggle:hover {
    background: var(--inkora-primary);
    color: #fff;
  }
  
  /* Fixed: Drawer close */
  .drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .drawer-close::before,
  .drawer-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: #333;
  }
  
  .drawer-close::before { transform: rotate(45deg); }
  .drawer-close::after { transform: rotate(-45deg); }
  
  .drawer-close:hover {
    background: var(--inkora-primary);
  }
  
  .drawer-close:hover::before,
  .drawer-close:hover::after {
    background: #fff;
  }

    /* Make header container relative for positioning */
    .inkoracontainerheader {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 15px 20px;
    }
	
    
    /* Site branding on left */
    .inkoracontainerheader .site-branding {
        flex: 1;
        text-align: left;
    }
    
    /* Menu toggle button - positioned on right */
    .main-navigation {
        position: static;
    }
    
    .menu-toggle {
        position: relative;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1002;
        margin: 0;
        order: 2;
        display: block;
		margin-left: auto; 
    }
    
 
    .mobile-nav {
		border: none;
		width: 20%;
		
	}
	.inkoracontainerheader > div:first-child {
  display: block;
  width: 80%;
	}
    .inkoracontainerheader > div:last-child {
  width: 100%;
}
  
}


/*===============================
=    06. Top Header & Breaking  =
===============================*/

.top-header {
    background: #0f172a;
    font-size: 13px;
}

.top-header .header-date {
    color: #cbd5e1;
    margin: 0px 15px;
    white-space: nowrap;
    float: left;
	padding: 5px 0 3px;
}

.inkora-breaking-news {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
	padding: 5px 10px 3px;
}

.breaking-label {
    color: #ef4444;
    font-weight: 600;
    position: relative;
    padding-left: 14px;
}

.breaking-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
}

.breaking-news-items {
    flex: 1;
    position: relative;
    height: 18px;
    overflow: hidden;
}

.breaking-news-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.breaking-news-item.active {
    opacity: 1;
}

.breaking-news-item a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breaking-news-item a:hover {
    color: #ffffff;
}

/*===============================
=       07. Posts & Archives    =
===============================*/
/* Responsive Aspect Ratios */
.post-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

/* Desktop: 16:9 */
@media (min-width: 768px) {
    .post-thumbnail {
        aspect-ratio: 16 / 9;
    }
    
    @supports not (aspect-ratio: 16/9) {
        .post-thumbnail {
            padding-bottom: 56.25%;
            height: 0;
        }
    }
}

/* Tablet: 4:3 */
@media (max-width: 767px) and (min-width: 481px) {
    .post-thumbnail {
        aspect-ratio: 4 / 3;
    }
    
    @supports not (aspect-ratio: 4/3) {
        .post-thumbnail {
            padding-bottom: 75%;
            height: 0;
        }
    }
}

/* Mobile: 1:1 */
@media (max-width: 480px) {
    .post-thumbnail {
        aspect-ratio: 3 / 1.5;
    }
    
    @supports not (aspect-ratio: 1/1) {
        .post-thumbnail {
            padding-bottom: 100%;
            height: 0;
        }
    }
}

.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Optional: Hover effect */
.post-thumbnail:hover img {
    transform: scale(1.05);
}
article.type-post, article.type-page {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

article.has-post-thumbnail .inkora-post-body {
    padding: 22px 0px 1px;
}

article .inkora-post-body {
    display: block;
    padding: 15px 0px 0px;
}

.entry-title {
    margin-bottom: 5px;
    line-height: 30px;
    font-size: 18px;
}

.entry-title a {
    color: inherit;
    text-decoration: none;
    transition: color 1s ease;
}

.entry-title a:hover {
    color: #1e90ff;
}

.entry-title::after {
    content: "";
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--theme-border-color) 0px, var(--theme-border-color) 1px, var(--theme-border-color) 1px, transparent 100%);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 30px;
    margin-top: 8px;
    font-size: 12px !important;
    line-height: 1.4;
    color: #999;
	align-items: center;
}

.entry-meta span {
    display: inline-flex;
    align-items: center;
	gap: 0px;
	font-size: 13px;
}

.entry-meta a {
    color: inherit;
    text-decoration: none;
}

.entry-meta a:hover {
    color: var(--inkora-accent, #2563eb);
}

.entry-meta::after {
    content: "";
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--theme-border-color) 0px, var(--theme-border-color) 1px, var(--theme-border-color) 1px, transparent 100%);
    display: block;
    border-radius: 2px;
}

.entry-meta time.updated {
    display: none;
}

.entry-footer {
    font-size: 13px;
    color: #999;
}

.post-thumbnail-archive {
    display: block;
    overflow: hidden;
    float: left;
    width: 254px;
    margin-right: 12px;
}

.post-thumbnail-archive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform .35s ease;
}

.post-thumbnail-full img {
    width: 100%;
}

article.type-post:hover .post-thumbnail-archive img {
    transform: scale(1.05);
}

/* Featured Post Full Width - Category Page */
/* Featured Post Full Width - Category Page */
.featured-post-fullwidth {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-left: 6px solid var(--inkora-primary);
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post-fullwidth:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* FIX: Featured Image - Fixed Size */
.featured-post-fullwidth .featured-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}

.featured-post-fullwidth .featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.featured-post-fullwidth:hover .featured-image-wrapper img {
    transform: scale(1.05);
}

/* FIX: Fallback when no image */
.featured-post-fullwidth .featured-no-image {
    width: 100%;
    aspect-ratio: 16 / 8;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.featured-post-fullwidth .featured-no-image .featured-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.featured-post-fullwidth .featured-no-image .featured-excerpt {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    max-width: 80%;
    margin: 0 auto;
}

/* Overlay Styles */
.featured-post-fullwidth .featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    color: #fff;
    padding: 30px 25px;
    z-index: 2;
}

.featured-post-fullwidth .featured-title {
    font-size: 28px;
    margin: 0 0 10px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.featured-post-fullwidth .featured-excerpt {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .featured-post-fullwidth .featured-title {
        font-size: 22px;
    }
    
    .featured-post-fullwidth .featured-excerpt {
        font-size: 14px;
    }
    
    .featured-post-fullwidth .featured-overlay {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .featured-post-fullwidth .featured-title {
        font-size: 18px;
    }
    
    .featured-post-fullwidth .featured-excerpt {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .featured-post-fullwidth .featured-overlay {
        padding: 15px;
    }
}

/*===============================
=        08. Single Post        =
===============================*/

.read-more-wrap {
    margin-top: 15px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 18px;
    background-color: #10b981;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
    background-color: #a4a4a4;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.reading-time {
    font-size: 13px;
    color: #999;
}

/*===============================
=        09. Comments           =
===============================*/

#comments {
    margin-top: 50px;
}

#comments h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

ol.comment-list, ul.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    border: 1px solid #e2e2e2;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: #fafafa;
}

.comment .comment-author {
    font-weight: 600;
    color: #222;
}

.comment .comment-metadata {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.comment .comment-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.comment .children {
    margin-top: 15px;
    margin-left: 30px;
}

.comment .reply a {
    font-size: 13px;
    color: #0ea5e9;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

.comment .reply a:hover {
    text-decoration: underline;
}

.comment.by-author {
    border-left: 3px solid #10b981;
    background-color: #f0fdf4;
}

.comment .avatar {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
}

.comment:after {
    content: "";
    display: table;
    clear: both;
}

#commentform {
    margin-top: 30px;
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

#commentform input[type="submit"] {
    background-color: var(--inkora-primary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

#commentform input[type="submit"]:hover {
    background-color: #0f766e;
}

/*===============================
=     10. Sidebar & Widgets     =
===============================*/

#secondary.widget-area {
    position: sticky;
    top: 20px;
    order: 2;
}

#secondary.widget-area .widget {
    padding: 5px 12px 14px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-image: repeating-linear-gradient(to right, var(--theme-border-color) 0px, var(--theme-border-color) 1px, var(--theme-border-color) 1px, transparent 100%) 1;
    border-top: 2px solid;
}

#secondary.widget-area .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

#secondary.widget-area .widget-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 6px;
    background: currentColor;
    opacity: 0.2;
}

/* WordPress Core Widgets */
.wp-block-latest-posts__list li {
    margin-bottom: 12px;
    border-bottom: 1px solid #4f4b4b;
    padding-bottom: 7px;
}

.wp-block-latest-posts__list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
	line-height: 30px;
}
.wp-block-archives-list li {
	border-bottom: 1px solid #e3e2e2;
	line-height: 30px;
}
.wp-block-archives-list li:last-of-type {
	border-bottom: none;
}
.cat-item {
	border-bottom: 1px solid #e3e2e2;
	line-height: 35px;
}
.cat-item:last-of-type {
	border-bottom: none;
}
.wp-block-latest-posts.wp-block-latest-posts__list {
  margin: 0;
}
.wp-block-latest-posts__post-title {
    color: #111827;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.wp-block-latest-posts__post-title:hover {
    color:#2563eb;
}
.wp-block-search {
    border-radius: 8px;
}

.wp-block-search__label {
    font-size: 23px;
    font-weight: 400;
    color: #111;
    margin-bottom: 14px;
}

.wp-block-categories {
    padding: 0;
    list-style-type: none;
	margin: 0;
}

.wp-block-categories li a {
    color: #333333;
}

.wp-block-archives {
    list-style-type: none;
    padding: 0;
	margin:0;
}

.wp-block-archives li a {
    color: #333333;
}

ol.wp-block-latest-comments {
    padding: 0;
}

ol.wp-block-latest-comments li article {
    padding: 0;
    box-shadow: none;
}

/* Custom Widgets */
.inkora-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.inkora-recent-posts li {
    margin-bottom: 15px;
    border-bottom: 1px solid #e3e2e2;
}
.inkora-recent-posts li:last-of-type {
    margin-bottom: 0px;
  border-bottom: none;
}
.inkora-recent-posts .recent-post-item a {
    display: flex;
    align-items: flex-start;
    padding-bottom: 10px;
}

.inkora-recent-posts .recent-post-thumb-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 10px;
}

.inkora-recent-posts .recent-post-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inkora-recent-posts .recent-post-info {
    flex-grow: 1;
}

.inkora-recent-posts .recent-post-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.3em;
    transition: color 0.3s;
}

.inkora-recent-posts .recent-post-item a:hover .recent-post-title {
    color: #0073aa;
}

.inkora-recent-posts .recent-post-date {
    font-size: 12px;
    color: #999;
}

.inkora-popular-tabs {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.popular-tabs-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
}

.popular-tabs-nav li {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.popular-tabs-nav li.active {
    background: #0073aa;
    color: #fff;
}

.popular-tabs-nav li:hover {
    background: #005177;
    color: #fff;
}

.popular-tabs-content {
    padding: 10px;
}

.tab-content {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-content.active {
    display: block;
}

.popular-post-item a {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-thumb-wrapper {
    flex-shrink: 0;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 5px;
}

.popular-post-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-info {
    flex: 1;
}

.popular-post-title {
    font-size: 14px;
    margin: 0 0 4px;
}

.popular-post-date {
    font-size: 12px;
    color: #888;
}

.inkora-ad-widget {
    text-align: center;
}

.inkora-ad-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.inkora-ad-link:hover .inkora-ad-image {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.inkora-ad-html iframe,
.inkora-ad-html img {
    max-width: 100%;
}

.inkora-social-widget {
    display: flex;
    gap: 10px;
}

.inkora-social-link {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .25s ease;
}

.inkora-social-link .dashicons {
    font-size: 20px;
    line-height: 1;
}

.inkora-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.inkora-social-link.facebook {
    background: #1877f2;
}

.inkora-social-link.twitter {
    background: #000;
}

.inkora-social-link.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.inkora-social-link.linkedin {
    background: #0a66c2;
}

.inkora-social-link.youtube {
    background: #ff0000;
}

.inkora-newsletter-widget {
    padding: 20px;
    background: #f7f8fa;
    border-radius: 8px;
}

.inkora-newsletter-widget .newsletter-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.inkora-newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.inkora-newsletter-form button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all .25s ease;
}

.inkora-newsletter-form button:hover {
    background: #000;
    transform: translateY(-1px);
}

.inkora-newsletter-form .dashicons {
    font-size: 18px;
}

.inkora-about-widget {
    text-align: left;
}

.inkora-about-widget .about-logo {
    margin-bottom: 15px;
}

.inkora-about-widget .about-logo img {
    max-width: 160px;
    height: auto;
}

.inkora-about-widget .about-text {
    font-size: 14px;
    line-height: 1.6;
}

/*===============================
=          11. Footer           =
===============================*/

.site-footer {
    background: #323232;
    color: #cbd5e1;
    font-size: 14px;
    border-top: 5px solid var(--theme-border-color);
}

.site-footer .site-info {
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
  border-top: 1px solid #4c4c4c;
  padding: 15px;
}

.site-footer a {
    color: #dddcdc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: #dddcdc;
    text-decoration: underline;
}

.site-footer .sep {
    margin: 0 8px;
    color: #64748b;
}

.inkora-footer-widgets {
  color: #fff;
  padding: 15px;
  max-width: 1200px;
  margin: 0px auto;
  border-bottom: 1px solid #0b0b0b;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-widget-title {
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}
.footer-widget-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 6px;
  background: currentColor;
}
.site-title-footer {
  font-size: 70px;
  font-weight: 700;
  text-decoration: none;
  font-family: Calibri;
  margin: 0;
  display: inline-block;
  padding-top: 0px;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
}
.footer-widget {
    font-size: 14px;
    line-height: 1.7;
}

.footer-widget ul li a {
    color: #FFFFFF;
}

.inkora-footer-widgets h4 {
    color: #dddcdc;
}

.inkora-footer-widgets .inkora-recent-posts .recent-post-info {
    text-align: left;
}

/*===============================
=        12. Pagination         =
===============================*/

.inkora-pagination {
    text-align: center;
    margin: 40px 0;
}

.inkora-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 4px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
	border: 1px solid #e0e0e0;
}

.inkora-pagination .page-numbers.current {
    background: var(--inkora-primary);
    color: #fff;
}


.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    display: flex;
    align-items: center;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    display: flex;
    align-items: center;
    gap: 25px;
}

.post-navigation {
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-post-link .nav-text .nav-title {
    color: #333;
    position: relative;
    transition: color 1s ease;
}

.nav-post-link .nav-text .nav-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--inkora-primary), var(--inkora-primary));
    transition: width 1s ease;
}

.nav-post-link:hover .nav-text .nav-title {
    color: #1e90ff;
}

.nav-post-link:hover .nav-text .nav-title::after {
    width: 100%;
}

.nav-previous a {
    justify-content: flex-start;
}

.nav-next a {
    justify-content: flex-end;
    text-align: right;
}

.nav-icon {
    font-size: 18px;
    color: #777;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: #999;
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.nav-post-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

/*===============================
=       13. Breadcrumb          =
===============================*/

.inkora-breadcrumb {
    font-size: 14px;
    color: #999;
    border-bottom: 1px solid #eeeded;
    padding: 4px 0px;
}

.inkora-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.inkora-breadcrumb li {
    display: flex;
    align-items: center;
	margin-top: -4px;
}

.inkora-breadcrumb li.sep {
    margin: 0 6px;
    color: #999;
}

.inkora-breadcrumb a {
    color: #999;
    text-decoration: none;
}

.inkora-breadcrumb a:hover {
    color: #FF8500;
}

/*===============================
=       14. Author Box          =
===============================*/

.inkora-author-box {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.inkora-author-box > :first-child {
    flex: 0 0 90px;
    max-width: 150px;
}

.inkora-author-box > :nth-child(2) {
    flex: 1;
}

.author-avatar img {
    border-radius: 50%;
}

.author-name {
    margin: 0 0 5px;
    font-size: 18px;
}

.author-name::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 6px;
    background: currentColor;
    opacity: 0.2;
}

.author-bio {
    font-size: 14px;
    margin-bottom: 10px;
}

.author-link {
    font-size: 13px;
    font-weight: 600;
}

.author-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.author-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.author-social a:hover {
    transform: translateY(-4px) scale(1.05);
}

.author-social a .dashicons-facebook {
    color: #1877f2;
}

.author-social a .dashicons-twitter {
    color: #1da1f2;
}

.author-social a .dashicons-linkedin {
    color: #0a66c2;
}

.author-social a .dashicons-instagram {
    color: #e4405f;
}

.author-social a .dashicons-youtube {
    color: #ff0000;
}

.author-social a:hover .dashicons-facebook {
    color: #1877f2;
}

.author-social a:hover .dashicons-twitter {
    color: #1da1f2;
}

.author-social a:hover .dashicons-linkedin {
    color: #0a66c2;
}

.author-social a:hover .dashicons-instagram {
    color: #e4405f;
}

.author-social a:hover .dashicons-youtube {
    color: #ff0000;
}

/*===============================
=      15. Related Posts        =
===============================*/
/* Related Posts Thumbnail with Fixed Ratio */
.inkora-related-posts .related-thumb {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;

}

/* Fixed aspect ratio 16:9 */
.inkora-related-posts .related-thumb {
    aspect-ratio: 16 / 9;
}



.inkora-related-posts .related-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Hover effect */
.inkora-related-posts .related-thumb:hover img {
    transform: scale(1.05);
}

/* For older browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
    .inkora-related-posts .related-thumb {
        padding-bottom: 56.25%; /* 16:9 = 9/16 = 0.5625 */
        height: 0;
    }
    
    .inkora-related-posts .related-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Responsive design for related posts grid */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-posts-list {
    overflow: hidden;

}

.related-posts-list h3 {
    padding: 15px 15px 10px;
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.related-posts-list h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-posts-list h3 a:hover {
    color: #2271b1;
}

.related-post-meta {
    padding: 0 15px 15px;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.related-post-meta > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-meta .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .inkora-related-posts .related-thumb {
        aspect-ratio: 16 / 8;
    }
	article.type-post, article.type-page {
		border: none;
	}
}
.inkora-related-posts {
    margin: 30px 0;
    padding: 10px;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.related-post-heading {
    text-align: center;
}

.related-post-meta {
  font-size: 11px;
  color: #999;
  margin: 0px auto 10px;
  padding: 0px 8px;
  display: flex;
  justify-content: space-between;
}

.related-post-meta span {
    display: inline-flex;
    align-items: center;
}

.post-date {
    margin-bottom: 5px;
}

.related-posts-list {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.related-posts-list h3 {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding: 10px 10px 0px;
    text-transform: capitalize;
}

.related-posts-list h3 a {
    color: #333333;
}

.inkora-related-posts h3::after {
    content: "";
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(to right, var(--theme-border-color) 0px, var(--theme-border-color) 1px, var(--theme-border-color) 1px, transparent 100%);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.related-posts-list h4 {
    padding: 0px 5px;
}

.related-posts-list h4::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #e63946;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(26%, 1fr));
    gap: 13px;
    margin-top: 10px;
}

.post-grid-wrapper .post-grid-thumbnail .post-thumbnail-archive {
    display: block;
    overflow: hidden;
    float: left;
    width: auto;
    margin-right: 0;
}

.related-post-item {
    animation: fadeInUp 5s ease forwards;
    animation-delay: 0s;
    opacity: 1;
    box-shadow: none !important;
}

.related-post-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.related-post-item:hover img {
    transform: scale(1.05);
}

.related-post-item a:first-child {
    display: block;
    overflow: hidden;
    position: relative;
}

.related-post-item h4 {
    padding: 10px 0px 0px;
    flex-grow: 1;
}

.related-post-item h4 a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    transition: color 0.2s ease;
}

.post-meta {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
}

.post-category {
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.related-post-item:not(:has(img)) {
    padding-top: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.related-post-item:nth-child(1) {
    animation-delay: 0.1s;
}

.related-post-item:nth-child(2) {
    animation-delay: 0.2s;
}

.related-post-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Related Categories Section */
.related-categories {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.related-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.related-category-item {
    display: block;
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.related-category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.related-category-item h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.related-category-item span {
    font-size: 13px;
    color: #666;
}

/*===============================
=      16. Share Buttons        =
===============================*/

.inkora-post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.inkora-post-share .share-label {
    font-weight: 600;
    margin-right: 6px;
}

.inkora-post-share a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.inkora-post-share a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.share-facebook {
    background: #1877f2;
}

.share-x {
    background: #000000;
}

.share-whatsapp {
    background: #25d366;
}

.inkora-post-share .dashicons {
    font-size: 18px;
    line-height: 1;
}

/*===============================
=         17. Tags              =
===============================*/

.tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
}

.tags-links a {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(145deg, #ff9800, #ff5722);
    color: white;
    font-weight: bold;
    padding: 0px 16px 2px 14px;
    border-radius: 0 25px 25px 0;
    position: relative;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
    margin: 0px 7px;
    transform: perspective(100px) rotateY(-5deg);
}

.tags-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(145deg, #ff9800, #ff5722);
    clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%);
    border-radius: 25px 0 0 25px;
}

/*===============================
=       18. Dark Mode           =
===============================*/

#darkModeToggle {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--inkora-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#darkModeToggle img {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

#darkModeToggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

#darkModeToggle:active {
    transform: translateY(-50%) scale(0.95);
}

body.dark-mode #darkModeToggle {
    background-color: #f3f4f6;
}

body.dark-mode #darkModeToggle img {
    filter: brightness(0) saturate(100%);
}

body.dark-mode,
body.dark-mode .main-navigation .menu ul,
body.dark-mode .main-navigation .menu ul li a,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .page-title,
body.dark-mode .entry-content,
body.dark-mode .inkora-categories li a,
body.dark-mode .inkora-recent-posts .recent-post-title,

body.dark-mode .author-bio,
body.dark-mode .related-posts-list h3 a,
body.dark-mode .nav-post-link .nav-text .nav-title,
body.dark-mode h2 a,
body.dark-mode .main-navigation a,
body.dark-mode .wp-block-latest-posts__post-title,
body.dark-mode .wp-block-archives li a,
body.dark-mode .wp-block-categories li a,
body.dark-mode .wp-block-search__label,
body.dark-mode .inkora-featured-category,
body.dark-mode .inkora-tabs-underline .inkora-tab-btn.active,
body.dark-mode .inkora-tab-btn,
body.dark-mode .inkora-post-title a,
body.dark-mode .inkora-featured-mini-title a, 
body.dark-mode .inkora-remaining-title a,
body.dark-mode .inkora-featured-post-title a,
body.dark-mode .inkora-sidebar-title a,
body.dark-mode .inkora-hero-sidebar-title a,
body.dark-mode .inkora-layout-timeline .inkora-date-day,
body.dark-mode .inkora-carousel-post-title a,
body.dark-mode .inkora-video-title a, 
body.dark-mode .site-branding .site-title a {
    color: #e7e6e6;
}

body.dark-mode .menu-toggle::before,
body.dark-mode .menu-toggle::after,
body.dark-mode .menu-toggle span {
    background: #dddcdc;
}

body.dark-mode .inkora-poll-header,
body.dark-mode .site-branding .site-title a {
	border-color: #dddcdc;
}



body.dark-mode,
body.dark-mode .site,
body.dark-mode .inkora-featured-article,
body.dark-mode .main-navigation.toggled .menu-manin-menu-container,
body.dark-mode .main-navigation .menu ul li a,
body.dark-mode .main-navigation .menu ul {
    background-color: #424242;
}

body.dark .tags-links a {
    background: #1f2933;
    color: #d1d5db;
    border-color: #374151;
}

body.dark .tags-links a:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/*===============================
=        19. Preloader          =
===============================*/

#inkora-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#inkora-preloader.spinner .spinner-inner {
    border: 4px solid #ddd;
    border-top: 4px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#inkora-preloader.bar {
    width: 80%;
    height: 5px;
    background: #ddd;
    position: relative;
}

#inkora-preloader.bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    width: 50%;
    background: #000;
    animation: loadbar 2s infinite;
}

@keyframes loadbar {
    100% {
        left: 100%;
    }
}

/*===============================
=      20. Scroll to Top        =
===============================*/

#inkora-scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--inkora-primary);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 9999;
}

#inkora-scroll-top .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

#inkora-scroll-top:hover {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

#inkora-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*===============================
=     21. Utilities & Helpers   =
===============================*/

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 310px;
}

.full {
    display: block !important;
}

.search-form .screen-reader-text {
    position: absolute;
    left: -9999px;
}

.search-field {
    width: 100%;
    padding: 10px 45px 10px 16px;
    border-radius: 50px;
    border: 1px solid var(--inkora-primary);
    background: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.search-field:focus {
    border-color: var(--inkora-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.search-field::placeholder {
    color: #9ca3af;
}

.ad {
    display: flex;
    justify-content: center;
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--inkora-primary);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--inkora-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.inkora-categories li a {
    color: #333333;
}

.inkora-categories {
    list-style-type: none;
    padding: 0;
	margin: 0;
}
.inkora-categories li {
  overflow: hidden;
  line-height: 25px;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 0 5px 0;
  margin-bottom: 6px;
}
.inkora-categories li:last-of-type {
  border-bottom: none;
}
.clear {
    clear: both;
}

.grid {
    float: left;
    width: 31.5%;
    margin-right: 10px;
}

.post-grid-content {
    padding: 10px;
}

.post-list-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.list-thumbnail {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 5px;
}
.list-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}
.list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-list-wrapper:hover .list-thumbnail img {
    transform: scale(1.05);
}

/* Right Side - Content */
.list-post-content {
    flex: 1;
}
/* Responsive Design */
@media (max-width: 768px) {
    .post-list-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .list-thumbnail {
        width: 100%;
        height: auto;
        max-height: 250px;
    }
    
    .entry-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    
    
    .entry-title {
        font-size: 18px;
    }
    
    .entry-meta {
        font-size: 12px;
    }
	.sidebar {
		padding: 15px;
	}
}


/* Gutenberg Styles */
.is-style-fancy-quote {
    border-left: 4px solid #FF5722;
    padding-left: 15px;
    font-style: italic;
    color: #333;
}

.is-style-highlight-button {
    background-color: #FF5722;
    color: #fff;
    border-radius: 25px;
    padding: 0.8em 1.5em;
    text-transform: uppercase;
}

.is-style-card-post {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px;
    border-radius: 8px;
}

/*===============================
=       22. Responsive          =
===============================*/

@media (max-width: 1200px) {
    body.boxed {
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .inkora-layout-wrapper {
        grid-template-columns: minmax(0, 1fr) 280px;
        padding: 15px;
    }
    
    .inkora-post-body {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
    }
    
    .entry-title {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	 
}

@media (max-width: 768px) {
    body.boxed {
        max-width: 100%;
        padding: 0 10px;
        box-shadow: none;
    }
    
    .inkora-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .left-sidebar .sidebar {
  order: 2;
}
    #secondary.widget-area {
        order: 2;
    }
	
    
    .inkora-layout-wrapper .content {
        
        margin-top: 10px;
    }
    
    .inkoracontainerheader {
        width: 100%;
		padding:15px;
    }
    
    .inkoracontainerheader > div:first-child {
        margin-bottom: 10px;
    }
    
    .top-header .header-date {
        display: none;
    }
    
    .featured-post-fullwidth .featured-title {
        font-size: 22px;
    }
    
    .featured-post-fullwidth .featured-excerpt {
        font-size: 14px;
    }
    
    .inkora-post-body {
        grid-template-columns: 1fr;
    }
    
    .post-thumbnail-archive img {
        aspect-ratio: 16 / 9;
    }
    
    .entry-header,
    .inkora-post-body,
    .entry-footer {
        padding-left: 0;
        padding-right: 0;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    
    
    .related-post-item h4 a {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .site-footer {
        font-size: 13px;
    }
    
    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .inkora-related-posts {
        margin: 40px 0;
    }
	.sidebar-area {
		padding: 15px;
	}
	
}

@media (max-width: 480px) {
    #darkModeToggle {
        width: 40px;
        height: 40px;
    }
    
    #darkModeToggle img {
        width: 20px;
        height: 20px;
    }
    
    body.boxed {
        padding: 0;
    }
    
    .inkora-layout-wrapper {
        padding: 0;
		display: block;
    }
    
    #secondary.widget-area .widget {
        padding: 16px;
        border-radius: 8px;
    }
    
    article.type-post {
        border-radius: 0px;
    }
    article.type-post:last-of-type {
        margin-bottom: 0px;
    }
    .entry-title {
        font-size: 20px;
    }
    
    .entry-meta {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 8px 10px;
    }
    
    article {
        padding: 0;
    }
    .related-categories {
  padding: 15px;
}
.archive-posts {padding: 15px;}
    .wp-block-search__label {
        font-size: 14px;
    }
    
    .wp-block-latest-posts__list li {
        padding: 12px 14px 12px 36px;
    }
    
    .wp-block-latest-posts__list li::before {
        left: 14px;
        font-size: 16px;
    }
    
    .wp-block-latest-posts__post-title {
        font-size: 15px;
    }
}



/*===============================
=    22. 404       =
===============================*/

        .error-404 {
  text-align: center;
  padding: 60px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}
        
        .page-header {
            margin-bottom: 30px;
            border: none;
        }
        
   .page-title {
            font-size: 22px;
           
        }
        
        .page-title .dashicons {
            font-size: 80px;
            width: 80px;
            height: 80px;
            color: var(--inkora-primary);
        }
        
        .page-subtitle {
            font-size: 24px;
            margin: 10px 0 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .page-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .error-icon {
            margin: 30px 0;
        }
        
        .error-icon .dashicons {
            font-size: 80px;
            width: 80px;
            height: 80px;
            color: #ff6b6b;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .error-message {
            font-size: 28px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .error-description {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        /* Search Form */
        .error-search {
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .search-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .search-title .dashicons {
            color: var(--inkora-primary);
        }
        
        .error-search .search-form {
            display: inline-flex;
            gap: 10px;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .error-search .search-form input[type="search"] {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .error-search .search-form input[type="search"]:focus {
            border-color: var(--inkora-primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(35,152,188,0.1);
        }
        
        .error-search .search-form button {
            padding: 12px 20px;
            background: var(--inkora-primary);
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .error-search .search-form button:hover {
            background: #1a7a9c;
            transform: translateY(-2px);
        }
        
        /* Helpful Links */
        .error-links {
            text-align: left;
        }
        
        .links-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .links-title .dashicons {
            color: var(--inkora-primary);
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .error-link-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: #f8f9fa;
            border: 1px solid #eee;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }
        
        .error-link-item:hover {
            background: var(--inkora-primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(35,152,188,0.3);
        }
        
        .error-link-item:hover .dashicons {
            color: #fff;
        }
        
        .error-link-item .dashicons {
            color: var(--inkora-primary);
            transition: all 0.3s ease;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .error-404 {
                padding: 40px 20px;
            }
            
            
            .page-title .dashicons {
                font-size: 50px;
                width: 50px;
                height: 50px;
            }
            
            .page-subtitle {
                font-size: 18px;
            }
            
            .error-message {
                font-size: 22px;
            }
            
            .links-grid {
                grid-template-columns: 1fr;
            }
            
            .error-search .search-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .error-404 {
                padding: 30px 15px;
            }
            
            
            
            .error-description {
                font-size: 14px;
            }
        }
/*===============================
=    23. search page       =
===============================*/
.search-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 20px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
        }
        
        .search-header-icon {
            margin-bottom: 20px;
        }
        
        .search-header-icon .dashicons {
            font-size: 48px;
            width: 48px;
            height: 48px;
            color: var(--inkora-primary);
        }
        
        .search-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: #333;
            line-height: 1.4;
        }
        
        .search-query {
            color: var(--inkora-primary);
            font-weight: 600;
            background: rgba(35,152,188,0.08);
            padding: 5px 15px;
            border-radius: 30px;
            display: inline-block;
            margin: 0 5px;
            font-size: 22px;
        }
        
        .search-result-count {
            margin: 15px 0 0;
            font-size: 16px;
            color: #666;
        }
        
        .count-badge {
            background: var(--inkora-primary);
            color: #fff;
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-right: 5px;
        }
        
        /* Results Container */
        .search-results-container {
            margin-bottom: 40px;
        }
        
        /* Search Result Items */
        .search-results-container article {
            background: #fff;
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .search-results-container article:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-2px);
            border-color: var(--inkora-primary);
        }
        
        .search-results-container .entry-title {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .search-results-container .entry-title a {
       
            text-decoration: none;
        }
        
        .search-results-container .entry-title a:hover {
            color: var(--inkora-primary);
        }
        
        .search-results-container .entry-meta {
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .search-results-container .entry-summary {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .search-results-container .read-more {
            display: inline-block;
            padding: 8px 20px;
            background: var(--inkora-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .search-results-container .read-more:hover {
            background: #1a7a9c;
        }
        
        /* Pagination Wrapper */
        .search-pagination-wrapper {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .pagination-info {
            color: #666;
            font-size: 14px;
            background: #f8f9fa;
            padding: 8px 20px;
            border-radius: 30px;
            border: 1px solid #eee;
        }
        
        .search-pagination {
            flex: 1;
            text-align: right;
        }
        
        .search-pagination .nav-links {
            display: inline-flex;
            gap: 5px;
            flex-wrap: wrap;
        }
        
        .search-pagination .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 5px;
            background: #f8f9fa;
            color: #666;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .search-pagination .page-numbers:hover {
            background: var(--inkora-primary);
            color: #fff;
            border-color: var(--inkora-primary);
        }
        
        .search-pagination .page-numbers.current {
            background: var(--inkora-primary);
            color: #fff;
            border-color: var(--inkora-primary);
        }
        
        .search-pagination .prev,
        .search-pagination .next {
            padding: 0 15px;
        }
        
        .search-pagination .dashicons {
            font-size: 16px;
            width: 16px;
            height: 16px;
            vertical-align: middle;
        }
        
        /* No Results Styles */
        .no-search-results {
            text-align: center;
            padding: 60px 30px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
        }
        
        .no-results-icon {
            margin-bottom: 20px;
        }
        
        .no-results-icon .dashicons {
            font-size: 80px;
            width: 80px;
            height: 80px;
            color: #ff6b6b;
        }
        
        .no-results-title {
            font-size: 32px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .no-results-message {
            font-size: 18px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .no-results-suggestion {
            font-size: 16px;
            color: #999;
            margin-bottom: 30px;
        }
        
        /* Search Form */
        .search-again-form {
            max-width: 500px;
            margin: 0 auto;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .search-again-form h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .search-again-form .search-form {
            display: flex;
            gap: 10px;
        }
        
        .search-again-form .search-form label {
            flex: 1;
        }
        
        .search-again-form .search-form input[type="search"] {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .search-again-form .search-form input[type="search"]:focus {
            border-color: var(--inkora-primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(35,152,188,0.1);
        }
        
        .search-again-form .search-form button {
            padding: 12px 25px;
            background: var(--inkora-primary);
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }
        
        .search-again-form .search-form button:hover {
            background: #1a7a9c;
        }
        
        .search-again-form .search-form button .dashicons {
            font-size: 16px;
            width: 16px;
            height: 16px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .search-title {
                font-size: 22px;
            }
            
            .search-query {
                font-size: 18px;
                display: block;
                margin: 10px 0;
            }
            
            .search-pagination-wrapper {
                flex-direction: column;
                text-align: center;
            }
            
            .search-pagination {
                text-align: center;
            }
            
            .no-results-title {
                font-size: 24px;
            }
            
            .no-results-message {
                font-size: 16px;
            }
            
            .search-again-form .search-form {
                flex-direction: column;
            }
            
            .search-results-container article {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .search-header {
                padding: 20px 15px;
            }
            
            .no-search-results {
                padding: 40px 20px;
            }
            
            .search-pagination .page-numbers {
                min-width: 35px;
                height: 35px;
                font-size: 13px;
            }
        }
        
        /* Grid Layout for Search Results */
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .posts-grid article {
            margin-bottom: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        /* List Layout for Search Results */
        .posts-list article {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        
        .posts-list .post-thumbnail {
            flex: 0 0 200px;
        }
        
        .posts-list .entry-content {
            flex: 1;
        }
        
        @media (max-width: 768px) {
            .posts-list article {
                flex-direction: column;
            }
            
            .posts-list .post-thumbnail {
                flex: none;
                width: 100%;
            }
        }
/*=============================================
=         Author Box Full (Archive Page)      =
=============================================*/

.inkora-author-box-full {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--inkora-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inkora-author-box-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Author Avatar */
.author-avatar-full {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--inkora-primary);
}

.author-avatar-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar-placeholder .dashicons {
    font-size: 60px;
    width: 60px;
    height: 60px;
    color: #fff;
}

/* Author Info */
.author-info-full {
    flex: 1;
}
.archive-post-count {
  margin-bottom: 10px;
}
.author-name-full {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a1a2e;
}

/* Author Stats */
.author-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eef2f6;
}

.author-stats-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
}

.author-stats-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--inkora-primary);
}

/* Author Bio */
.author-bio-full {
    margin-bottom: 20px;
}

.author-bio-full p {
    margin: 0 0 10px;
    line-height: 1.6;
    color: #555;
}

/* Author Social Links */
.author-social-full {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.author-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
}

.author-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.author-social-link .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.author-social-link.website:hover {
    background: #333;
    color: #fff;
}

.author-social-link.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.author-social-link.twitter:hover {
    background: #000;
    color: #fff;
}

.author-social-link.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

.author-social-link.linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

.author-social-link.youtube:hover {
    background: #ff0000;
    color: #fff;
}

/* Dark Mode Support */
body.dark-mode .inkora-author-box-full {
    background: #2d2d2d;
    border-left-color: var(--inkora-primary);
}

body.dark-mode .author-name-full {
    color: #fff;
}

body.dark-mode .author-stats-item {
    background: #3d3d3d;
    color: #ccc;
}

body.dark-mode .author-bio-full p {
    color: #ccc;
}

body.dark-mode .author-social-link {
    background: #3d3d3d;
    color: #ccc;
}

body.dark-mode .author-social-link:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .inkora-author-box-full {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .author-avatar-full {
        margin: 0 auto;
    }
    
    .author-stats {
        justify-content: center;
    }
    
    .author-social-full {
        justify-content: center;
    }
    
    .author-name-full {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .inkora-author-box-full {
        padding: 20px;
		margin: 0px 15px;
    }
    .archive-posts-list {
  padding: 15px;
}
    .author-avatar-full {
        width: 120px;
        height: 120px;
    }
    
    .author-stats {
        flex-wrap: wrap;
        gap: 10px;
    }
	.archive-header {
		padding:15px;
	}
}		
blockquote {
  margin: 20px 0;
  padding: 20px 30px;
  border-left: 5px solid var(--inkora-primary);
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
}

blockquote::before {
  content: '"';
  font-size: 4rem;
  font-family: serif;
  color: var(--inkora-primary);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 15px;
}

blockquote p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Base Styles */
.wp-block-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* Style 1: Checkmark Icons */
.wp-block-list:not(.is-style-custom) li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.wp-block-list:not(.is-style-custom) li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--inkora-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ========== INPUT FIELDS STYLING ========== */

/* Base styling for all input fields */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="submit"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}
.ad-image {
  display: flex;
  justify-content: center;
}
.inkora-after-header-ad {
  margin: 10px auto -15px;
}
.footer-ad-image {
  margin: -25px auto 10px;
}














/*front-page styles*/
/* ========== Container ========== */
.inkora-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Section Header ========== */
.inkora-section-header {
    text-align: center;
}

.inkora-section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.inkora-section-header p {
    font-size: 18px;
    color: #666;
}

/* ========== Hero Section ========== */
.inkora-hero {
    padding: 150px 0;
    text-align: center;
    color: #fff;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

.inkora-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.inkora-hero-content {
    position: relative;
    z-index: 2;
}

.inkora-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.inkora-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.inkora-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.inkora-btn:hover {
    background: #005a87;
    color: #fff;
}

/* ========== Features & Services Grid ========== */
.inkora-features-grid,
.inkora-services-grid,
.inkora-pricing-grid {
    display: grid;
    gap: 30px;
}

.inkora-grid-1 { grid-template-columns: 1fr; }
.inkora-grid-2 { grid-template-columns: repeat(2, 1fr); }
.inkora-grid-3 { grid-template-columns: repeat(3, 1fr); }
.inkora-grid-4 { grid-template-columns: repeat(4, 1fr); }
.inkora-grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ========== FEATURES STYLE 1 ========== */
.inkora-features-style1 .inkora-feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.inkora-features-style1 .inkora-feature-item:hover {
    transform: translateY(-10px);
}

/* ========== FEATURES STYLE 2 ========== */
.inkora-features-style2 .inkora-feature-item {
    text-align: center;
    padding: 20px;
}

.inkora-features-style2 .inkora-feature-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #0073aa;
}

/* ========== FEATURES STYLE 3 ========== */
.inkora-features-style3 .inkora-feature-item {
    border: 2px solid #e0e0e0;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.inkora-features-style3 .inkora-feature-item:hover {
    border-color: #0073aa;
    background: #f5f5f5;
}

/* ========== SERVICES STYLE 1 ========== */
.inkora-services-style1 .inkora-service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.inkora-services-style1 .inkora-service-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #0073aa;
    margin-bottom: 20px;
}

/* ========== SERVICES STYLE 2 ========== */
.inkora-services-style2 .inkora-service-item {
    text-align: center;
    padding: 20px;
}

.inkora-services-style2 .inkora-service-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    background: #0073aa;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* ========== SERVICES STYLE 3 ========== */
.inkora-services-style3 .inkora-service-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.inkora-services-style3 .inkora-service-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* ========== PRICING STYLE 1 ========== */
.inkora-pricing-style1 .inkora-plan {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ========== PRICING STYLE 2 ========== */
.inkora-pricing-style2 .inkora-plan {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.inkora-pricing-style2 .inkora-plan-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.05);
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-price {
    color: #fff;
}

/* ========== PRICING STYLE 3 ========== */
.inkora-pricing-style3 .inkora-plan {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.inkora-pricing-style3 .inkora-plan:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.05);
}

/* ========== Pricing Common ========== */
.inkora-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.inkora-plan-header {
    margin-bottom: 30px;
}

.inkora-plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.inkora-price {
    font-size: 36px;
    font-weight: bold;
    color: #0073aa;
}

.inkora-plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.inkora-plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.inkora-btn-plan {
    background: #0073aa;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .inkora-grid-2,
    .inkora-grid-3,
    .inkora-grid-4,
    .inkora-grid-6,
    .inkora-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .inkora-hero-content h1 {
        font-size: 32px;
    }
    
    .inkora-pricing-style2 .inkora-plan-featured {
        transform: scale(1);
    }
    
    .inkora-feature-item,
    .inkora-service-item,
    .inkora-plan {
        margin-bottom: 20px;
    }
}

/* ========== Icon/Image Style ========== */
.inkora-feature-img img,
.inkora-service-img img {
    margin-bottom: 20px;
}

.inkora-feature-icon .dashicons,
.inkora-service-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

/* ========== Background with Opacity ========== */
.inkora-features,
.inkora-services {
    position: relative;
    z-index: 1;
}

.inkora-bg-image,
.inkora-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.inkora-bg-overlay {
    background-blend-mode: overlay;
}

/* For background image without opacity */
.inkora-bg-image {
    z-index: -1;
}

/* For background image with opacity - this creates the transparent effect */
.inkora-bg-overlay {
    background-color: inherit;
    background-blend-mode: multiply;
}

/* Ensure content stays above background */
.inkora-features .inkora-container,
.inkora-services .inkora-container {
    position: relative;
    z-index: 2;
}

/* ========== Hero Section ========== */
.inkora-hero {
    padding: 150px 0;
    text-align: center;
    color: #fff;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.inkora-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.inkora-hero-content {
    position: relative;
    z-index: 2;
}

/* ========== Container ========== */
.inkora-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ========== Section Header ========== */
.inkora-section-header {
    text-align: center;
}

.inkora-section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.inkora-section-header p {
    font-size: 18px;
    color: #666;
}

/* ========== Features & Services Sections ========== */
.inkora-features,
.inkora-services {
    padding: 15px  0;
    position: relative;
}

.inkora-features-grid,
.inkora-services-grid {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.inkora-grid-1 { grid-template-columns: 1fr; }
.inkora-grid-2 { grid-template-columns: repeat(2, 1fr); }
.inkora-grid-3 { grid-template-columns: repeat(3, 1fr); }
.inkora-grid-4 { grid-template-columns: repeat(4, 1fr); }
.inkora-grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ========== FEATURES STYLES ========== */
.inkora-features-style1 .inkora-feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.inkora-features-style1 .inkora-feature-item:hover {
    transform: translateY(-10px);
}

.inkora-features-style2 .inkora-feature-item {
    text-align: center;
    padding: 20px;
}

.inkora-features-style2 .inkora-feature-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #0073aa;
}

.inkora-features-style3 .inkora-feature-item {
    border: 2px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.inkora-features-style3 .inkora-feature-item:hover {
    border-color: #0073aa;
    background: #f5f5f5;
}

/* ========== SERVICES STYLES ========== */
.inkora-services-style1 .inkora-service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.inkora-services-style1 .inkora-service-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #0073aa;
    margin-bottom: 20px;
}

.inkora-services-style2 .inkora-service-item {
    text-align: center;
    padding: 20px;
}

.inkora-services-style2 .inkora-service-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    background: #0073aa;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.inkora-services-style3 .inkora-service-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.inkora-services-style3 .inkora-service-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* ========== PRICING STYLES ========== */
/* ========== Pricing Grid with Dynamic Columns ========== */
.inkora-pricing-grid {
    display: grid;
    gap: 30px;
}

.inkora-grid-1 { grid-template-columns: 1fr; }
.inkora-grid-2 { grid-template-columns: repeat(2, 1fr); }
.inkora-grid-3 { grid-template-columns: repeat(3, 1fr); }
.inkora-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========== Pricing Common ========== */
.inkora-pricing {
    position: relative;
    padding: 80px 0;
}

.inkora-plan {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.inkora-plan-header {
    margin-bottom: 30px;
}

.inkora-plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.inkora-price {
    font-size: 36px;
    font-weight: bold;
    color: #0073aa;
}

.inkora-price-label {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.inkora-plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.inkora-plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* ========== Pricing Style 1 ========== */
.inkora-pricing-style1 .inkora-plan {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.inkora-pricing-style1 .inkora-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ========== Pricing Style 2 ========== */
.inkora-pricing-style2 .inkora-plan-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.05);
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-price {
    color: #fff;
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-price-label {
    color: #fff;
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-plan-features li {
    border-bottom-color: rgba(255,255,255,0.2);
}

/* ========== Pricing Style 3 ========== */
.inkora-pricing-style3 .inkora-plan {
    background: #f5f7fa;
}

.inkora-pricing-style3 .inkora-plan:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-10px);
}

.inkora-pricing-style3 .inkora-plan:hover .inkora-price {
    color: #fff;
}

.inkora-pricing-style3 .inkora-plan:hover .inkora-btn-plan {
    background: #fff;
    color: #667eea;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
    .inkora-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inkora-grid-2,
    .inkora-grid-3,
    .inkora-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .inkora-pricing-style2 .inkora-plan-featured {
        transform: scale(1);
    }
}

/* ========== Icon/Image Style ========== */
.inkora-feature-img img,
.inkora-service-img img {
    margin-bottom: 20px;
}

.inkora-feature-icon .dashicons,
.inkora-service-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .inkora-grid-2,
    .inkora-grid-3,
    .inkora-grid-4,
    .inkora-grid-6,
    .inkora-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .inkora-hero {
        padding: 80px 0;
    }
    
    .inkora-hero-content h1 {
        font-size: 32px;
    }
    
    .inkora-pricing-style2 .inkora-plan-featured {
        transform: scale(1);
    }
    
    .inkora-features,
    .inkora-services,
    .inkora-pricing {
        padding: 50px 0;
    }
}
/* ============================================
   PRICING SECTION WITH BACKGROUND OPACITY
   ============================================ */
.inkora-pricing {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Background Image */
.inkora-pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Opacity Overlay */
.inkora-pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Container should be above background */
.inkora-pricing .inkora-container {
    position: relative;
    z-index: 2;
}

/* Pricing Grid */
.inkora-pricing-grid {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.inkora-grid-1 { grid-template-columns: 1fr; }
.inkora-grid-2 { grid-template-columns: repeat(2, 1fr); }
.inkora-grid-3 { grid-template-columns: repeat(3, 1fr); }
.inkora-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Pricing Plans */
.inkora-plan {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.inkora-plan-header {
    margin-bottom: 30px;
}

.inkora-plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.inkora-price {
    font-size: 36px;
    font-weight: bold;
    color: #0073aa;
}

.inkora-price-label {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.inkora-plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.inkora-plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.inkora-btn-plan {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.inkora-btn-plan:hover {
    background: #005a87;
    color: #fff;
}

/* ============================================
   PRICING STYLES
   ============================================ */

/* Style 1 - Standard Cards */
.inkora-pricing-style1 .inkora-plan {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.inkora-pricing-style1 .inkora-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Style 2 - Highlighted Featured */
.inkora-pricing-style2 .inkora-plan-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.05);
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-price {
    color: #fff;
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-price-label {
    color: #fff;
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-plan-features li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.inkora-pricing-style2 .inkora-plan-featured .inkora-btn-plan {
    background: #fff;
    color: #667eea;
}

/* Style 3 - Modern Gradient */
.inkora-pricing-style3 .inkora-plan {
    background: #f5f7fa;
}

.inkora-pricing-style3 .inkora-plan:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-10px);
}

.inkora-pricing-style3 .inkora-plan:hover .inkora-price {
    color: #fff;
}

.inkora-pricing-style3 .inkora-plan:hover .inkora-btn-plan {
    background: #fff;
    color: #667eea;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .inkora-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inkora-pricing {
        padding: 50px 0;
    }
    
    .inkora-grid-2,
    .inkora-grid-3,
    .inkora-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .inkora-pricing-style2 .inkora-plan-featured {
        transform: scale(1);
    }
}
/* ============================================
   SECTION CTA BUTTONS
   ============================================ */
.inkora-section-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.inkora-cta-btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.inkora-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .inkora-section-cta {
        margin-top: 30px;
    }
    
    .inkora-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
        width: auto;
        min-width: 200px;
    }
}


:root {
--inkora-primary-dim: rgba(var(--inkora-primary), 0.6); /* dim effect */
}

.inkora-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    padding: 20px;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg-slide:first-child,
.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-content-wrapper {
    
    margin: 0 auto;
    text-align: center;
}

/* Animation Styles */

.hero-content-wrapper.animate-on-load {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-wrapper.animate-on-load .hero-title {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content-wrapper.animate-on-load .hero-description {
    animation: fadeInUp 0.6s ease 0.15s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-content-wrapper.animate-on-load .hero-features-list {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-content-wrapper.animate-on-load .hero-buttons-group {
    animation: fadeInUp 0.6s ease 0.45s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-content-wrapper.animate-on-load .hero-stats-bar {
    animation: fadeInUp 0.6s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-content-wrapper:not(.animate-on-load) .hero-title,
.hero-content-wrapper:not(.animate-on-load) .hero-description,
.hero-content-wrapper:not(.animate-on-load) .hero-features-list,
.hero-content-wrapper:not(.animate-on-load) .hero-buttons-group,
.hero-content-wrapper:not(.animate-on-load) .hero-stats-bar {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-feature-item .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #00a8ff;
    color: var(--inkora-primary) !important;
}

.hero-feature-item span:last-child {
    font-size: 13px;
    font-weight: 500;
}

.hero-buttons-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 14px 38px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.hero-btn-primary {
    background: #00a8ff;
    color: #ffffff;
    border: 2px solid #00a8ff;
}

.hero-btn-primary:hover {
    background: transparent;
    color: #00a8ff;
    transform: translateY(-3px);
    background: transparent !important;
    color: var(--inkora-primary) !important;
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* Stats Bar */

.hero-stats-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 170px;
    transition: all 0.3s ease;
}

.stat-icon {
    font-size: 44px;
    width: 44px;
    height: 44px;
    color: var(--inkora-primary) ;
    display: inline-block;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 5px;
}

.stat-number {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
}

.stat-item:hover .stat-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.stat-item:hover .stat-number {
    color: #00a8ff;
    color: var(--inkora-primary) !important;
}

.stat-item:hover .stat-label {
    opacity: 1;
    letter-spacing: 1.5px;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-feature-item {
        min-width: 130px; padding: 12px 16px;
    }

    .hero-feature-item .dashicons {
        font-size: 24px; width: 24px; height: 24px;
    }

    .stat-icon {
        font-size: 36px; width: 36px; height: 36px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-item {
        min-width: 150px; gap: 12px;
    }
}

@media (max-width: 768px) {
    .inkora-hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px; margin-bottom: 30px;
    }

    .hero-features-list {
        display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    }

    .hero-feature-item {
        min-width: auto; padding: 10px;
    }

    .hero-buttons-group {
        flex-direction: column; align-items: center; gap: 15px; margin-bottom: 40px;
    }

    .hero-btn {
        width: 100%; max-width: 220px; padding: 12px 20px; font-size: 14px;
    }

    .hero-stats-bar {
         gap: 25px; padding-top: 35px;
    }

    .stat-item {
        min-width: auto; justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-feature-item {
        padding: 8px;
    }

    .hero-feature-item .dashicons {
        font-size: 18px; width: 18px; height: 18px;
    }
}

.animate-on-scroll-header,
        .animate-on-scroll-item {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll-header.fade-up,
        .animate-on-scroll-item.fade-up {
    transform: translateY(40px);
}

.animate-on-scroll-header.fade-down,
        .animate-on-scroll-item.fade-down {
    transform: translateY(-40px);
}

.animate-on-scroll-header.fade-left,
        .animate-on-scroll-item.fade-left {
    transform: translateX(40px);
}

.animate-on-scroll-header.fade-right,
        .animate-on-scroll-item.fade-right {
    transform: translateX(-40px);
}

.animate-on-scroll-header.zoom-in,
        .animate-on-scroll-item.zoom-in {
    transform: scale(0.9);
}

.animate-on-scroll-header.zoom-out,
        .animate-on-scroll-item.zoom-out {
    transform: scale(1.1);
}

.animate-on-scroll-header.animated,
        .animate-on-scroll-item.animated {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotateX(0);
}

.inkora-feature-item {
    position: relative;
    overflow: hidden;
}

.inkora-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0,115,170,0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.inkora-feature-item:hover::before {
    opacity: 1;
}

.inkora-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.inkora-feature-item:hover .dashicons {
    color: <?php echo esc_attr($features_icon_hover_color); ?> !important;
    transform: scale(1.15) rotate(8deg);
}

@media (max-width: 768px) {
    .inkora-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .inkora-features-grid {
        grid-template-columns: 1fr !important;
    }
}

.inkora-about-style1 .about-btn:hover {
    background: <?php echo esc_attr($about_accent_color); ?>cc;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .inkora-about-style1 .inkora-container > div {
        grid-template-columns: 1fr !important;
    }

    .floating-stats {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 20px;
    }
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--inkora-primary);
    opacity:0.5;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important; align-items: flex-start !important; padding-left: 40px;
    }

    .timeline-dot {
        left: 20px !important; transform: none !important;
    }

    .timeline-content {
        width: 100% !important; text-align: left !important; padding-left: 0 !important; padding-right: 0 !important;
    }

    .timeline-content > div {
        width: 100%;
    }
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .inkora-about-style3 .inkora-container > div:first-child + div,
        .inkora-about-style3 .inkora-container > div:first-child + div + div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .inkora-about-style3 .inkora-container > div:first-child + div,
        .inkora-about-style3 .inkora-container > div:first-child + div + div {
        grid-template-columns: 1fr !important;
    }
}

.vsl-arrow:hover {
    background: var(--inkora-primary,#2398bc) !important; color: #fff !important; transform: translateY(-50%) scale(1.08) !important;
}

.vsl-arrow:hover .dashicons {
    color: #fff !important;
}

.vsl-card-inner {
    transition: box-shadow 0.3s ease;
}

.vsl-card-inner:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.14) !important;
}

@media (max-width:900px) {
    .vsl-card-inner {
        grid-template-columns: 1fr !important;
    }

    .vsl-outer {
        padding: 0 46px;
    }
}

@media (max-width:600px) {
    .vsl-outer {
        padding: 0 36px;
    }

    .vsl-arrow {
        width:36px !important; height:36px !important;
    }

    .vsl-arrow .dashicons {
        font-size: 16px !important; width: 16px !important; height: 16px !important;
    }
}

.s1-item-head:hover .s1-item-title {
    color: #ffef00 !important;
}

@media(max-width:768px) {
    .s1-grid {
        grid-template-columns:1fr !important;
    }

    .s1-right-panel {
        position:static !important;
    }
}

.s2-card:hover {
    transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

.s2-card.s2-active {
    background:#1a1208!important; border-color:transparent!important;
}

.s2-card.s2-active > div:last-child {
    color:#fff!important;
}

@media(max-width:600px) {
    .s2-panel-content {
        grid-template-columns:1fr!important;
    }
}

@keyframes s3FadeIn { from { opacity:0; transform:translateX(12px); } to { opacity:1; transform:translateX(0); } }

.s3-list-item:hover {
    background:rgba(167,139,250,0.07)!important; border-color:rgba(167,139,250,0.2)!important;
}

.s3-list-item:hover span:last-child {
    transform:translateX(3px);
}

@media(max-width:768px) {
    .s3-split {
        grid-template-columns:1fr!important;
    }
}

.price-card-s1:hover {
    transform: translateY(-6px) !important; box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important;
}

@media(max-width:900px) {
    .pricing-grid-s1 {
        grid-template-columns: repeat(2,1fr) !important;
    }
}

@media(max-width:600px) {
    .pricing-grid-s1 {
        grid-template-columns: 1fr !important;
    }
}

.price-card-s2:hover {
    transform: translateY(-6px) !important;
}

@media(max-width:900px) {
    .pricing-grid-s2 {
        grid-template-columns: repeat(2,1fr) !important;
    }
}

@media(max-width:600px) {
    .pricing-grid-s2 {
        grid-template-columns: 1fr !important;
    }
}

.price-card-s3:hover {
    transform: translateY(-8px) !important; box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important;
}

@media(max-width:900px) {
    .pricing-grid-s3 {
        grid-template-columns: repeat(2,1fr) !important;
    }
}

@media(max-width:600px) {
    .pricing-grid-s3 {
        grid-template-columns: 1fr !important;
    }
}

.inkora-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.inkora-post-card:hover .lp-thumb {
    transform: scale(1.06);
}

.inkora-post-card:hover .lp-title-link {
    color: var(--inkora-primary, #2398bc) !important;
}

.inkora-post-card:hover .lp-read-more {
    gap: 10px !important;
}

@media (max-width: 768px) {
    .inkora-latest-posts .inkora-container > div {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .inkora-latest-posts .inkora-container > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@keyframes marqueeScroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }

.clients-marquee-wrapper:hover .clients-marquee {
    animation-play-state: paused;
}

.client-logo-item:hover {
    background: var(--inkora-primary, #2398bc)10 !important; border-color: var(--inkora-primary, #2398bc) !important; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.client-logo-item:hover img {
    filter: grayscale(0%) !important;
}

.client-card:hover {
    transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important; border-color: var(--inkora-primary, #2398bc) !important;
}

.client-card:hover img {
    filter: grayscale(0%) !important;
}

@media (max-width: 768px) {
    .clients-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .clients-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

.team-card:hover {
    transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.12) !important;
}

.team-card:hover .team-social-overlay {
    opacity: 1 !important;
}

.team-card:hover .team-photo img {
    transform: scale(1.08);
}

.team-social-overlay a:hover {
    transform: scale(1.15);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

@keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(200%); }
    }

@media (max-width: 768px) {
    .projects-main-grid {
        grid-template-columns: 1fr !important;
    }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .inkora-contact-style3 .inkora-container > div:first-child + div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .inkora-contact-style3 .inkora-container > div:first-child + div {
        grid-template-columns: 1fr !important;
    }
}


/* ====== INKORA: Scroll Animation Base Styles ====== */

.animate-on-scroll,
.animate-on-scroll-header,
.animate-on-scroll-item {
    opacity: 0;
    will-change: opacity, transform;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.animated,
.animate-on-scroll-header.animated,
.animate-on-scroll-item.animated {
    opacity: 1;
    transform: none !important;
}

/* Animation types */

.fade-up {
    transform: translateY(40px);
}

.fade-down {
    transform: translateY(-40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.zoom-in {
    transform: scale(0.88);
}

.zoom-out {
    transform: scale(1.1);
}

.flip-x {
    transform: rotateX(20deg) translateY(30px);
}

/* Inkora global button primary color */

.inkora-btn-primary, .hero-btn-primary {
    background: var(--inkora-primary) !important;
    border-color: var(--inkora-primary) !important;
}

/* ====== SECTION NAV BOXES (Right Side) ====== */

#inkora-section-nav {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}

.inkora-nav-box {
    width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgb(from var(--inkora-primary) r g b / 0.6);
  border: 2px solid rgb(from var(--inkora-primary) r g b / 0.6);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    position: relative;
}

.inkora-nav-box::after {
    content: attr(data-label);
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--inkora-primary, #2398bc);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.inkora-nav-box:hover::after {
    opacity: 1;
}

.inkora-nav-box:hover, .inkora-nav-box.active {
    background: var(--inkora-primary, #2398bc);
    border-color: var(--inkora-primary, #2398bc);
    transform: scale(1.35);
    box-shadow: 0 0 0 4px rgb(from var(--inkora-primary) r g b / 0.3);
}

@media (max-width: 768px) {
    #inkora-section-nav {
        display: none;
    }
}