/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# widget
    - sidebar
    - Box sizing


--------------------------------------------------------------*/

a:hover{
    color:#ec2b8c;
}
a.post-thumbnail {
    overflow: hidden;
    display: block;
    width: 100%;
}
/* header style
--------------------------------------------- */
/*Header top*/
.aaktop-menu,
.aaktop-menu ul {
    display: flex;
}

.aaktop-menu li {
    padding: 0 10px;
}
.aaktop-tophead, 
.aaktop-tophead a, 
.aaktop-tophead span, 
.aaktop-tophead input {
    font-size: 13px;
}
.aaktop-tophead a:hover{
    color:#dedede;
}
.topmenu-serch {
    display: flex;
    align-items: baseline;
    flex-flow: row wrap;
}

.header-top-search form.search-form {
    display: flex;
    min-width: 300px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top-search form.search-form input.search-submit {
    margin-left: 0;
    background: #ec2b8c; /* Match logo color */
    color: #fff;
    padding: 8px 20px;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-top-search form.search-form input.search-submit:hover {
    background: #d91a7a; /* Darker shade on hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 43, 140, 0.3);
}

.header-top-search input[type="search"] {
    width: 100%;
    padding: 8px 15px;
    border: none;
    outline: none;
    background: #fff;
    font-size: 14px;
    border-radius: 25px 0 0 25px;
}

.header-top-search input[type="search"]:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #ec2b8c;
}

.header-top-search input[type="search"]::placeholder {
    color: #999;
    font-style: italic;
}

/* Additional search form enhancements */
.header-top-search form.search-form input.search-submit {
    border-radius: 0 25px 25px 0;
}

.header-top-search form.search-form input.search-submit:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.header-top-search {
    width: 300px;
    margin-left: 15px;
}
.header-top-search label {
    width: 100%;
    margin: 0;
}

/* Search form responsive adjustments */
@media (max-width: 768px) {
    .header-top-search {
        width: 100%;
        margin: 10px 0 0 0;
    }
    
    .header-top-search form.search-form {
        min-width: 100%;
    }
    
    .topmenu-serch {
        flex-direction: column;
        align-items: stretch;
    }
}
.aaktop-tophead .row{
    align-items: baseline;
}
.brand-menubar{
    -webkit-box-shadow: 0 2px 20px rgba(0,0,0,.08);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    position: relative;
    background: #fff;
    border-bottom: 3px solid #ec2b8c;
    transition: all 0.3s ease;
    z-index: 1000;
}

.brand-menubar:hover {
    box-shadow: 0 4px 30px rgba(0,0,0,.12);
}

/* Header Logo Styling */
.aak-header .site-title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.headerlogo-text {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.headerlogo-text:hover {
    transform: translateY(-1px);
}

h1.site-title {
    margin-bottom: 0;
    position: relative;
}

h1.site-title a {
    font-size: 28px;
    color: #ec2b8c;
    line-height: 1.2;
    margin-bottom: 0;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1.site-title a:hover {
    background: linear-gradient(135deg, #d91a7a, #ec2b8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

/* Custom Logo Styling */
.custom-logo {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.custom-logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 15px rgba(236, 43, 140, 0.3));
}
p.site-description {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

p.site-description:hover {
    opacity: 1;
    color: #ec2b8c;
}

/* Main Navigation Styling */
.aak-main-nav {
    background: transparent;
    border-radius: 0;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

#primary-menu li {
    position: relative;
}

#primary-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

#primary-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 25px;
}

#primary-menu li a:hover::before {
    left: 0;
}

#primary-menu li a:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 43, 140, 0.3);
}

#primary-menu li.current-menu-item a,
#primary-menu li.current_page_item a {
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    box-shadow: 0 4px 15px rgba(236, 43, 140, 0.3);
}
.text-center{
    text-align: center;
}
.text-ritht{
    text-align: right;
}
/* Menu Positioning Styles */
.aak-main-menu.menu-right ul{
    display: flex;
    justify-content: flex-end;
    text-align: left;
    margin-bottom: 0;
    align-items: center;
}

.aak-main-menu.menu-center ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.aak-main-menu.menu-left ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
}

/* Header Layout Styles */
.d-flex.aak-logo-left {
    align-items: center;
    justify-content: space-between;
}

.d-flex.aak-logo-right {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

.d-flex.aak-logo-center {
    flex-flow: column wrap;
    align-items: center;
    text-align: center;
}

.aak-logo-center .headerlogo-text {
    padding: 15px 0;
    justify-content: center;
}

.aak-logo-left .headerlogo-text {
    min-width: 300px;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 43, 140, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    #primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        padding: 20px;
        gap: 0;
    }
    
    #primary-menu.toggled {
        display: flex;
    }
    
    #primary-menu li a {
        padding: 15px;
        margin: 5px 0;
        text-align: center;
        border-radius: 10px;
    }
    
    h1.site-title a {
        font-size: 22px;
    }
    
    .custom-logo {
        max-height: 45px;
    }
    
    .headerlogo-text {
        gap: 10px;
    }
}
/* Header Special Effects */
.aak-header {
    position: relative;
    z-index: 999;
}

.aak-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(236, 43, 140, 0.02), rgba(240, 98, 146, 0.02));
    pointer-events: none;
}

/* Header container styling */
.brand-menubar .container {
    position: relative;
    z-index: 2;
}

.aak-menu-wrap {
    padding: 15px 0;
    min-height: 80px;
    align-items: center;
}

/* Style variations for header style 2 */
.style2 h1.site-title a {
    font-size: 42px;
    background: linear-gradient(135deg, #ec2b8c, #f06292, #ba68c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.style2 .headerlogo-text {
    text-align: center;
    padding: 20px 0;
}

.style2 .brand-menubar {
    border-bottom: none;
    border-top: 3px solid #ec2b8c;
}

/* Sticky header effects */
.aak-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Logo animation on page load */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headerlogo-text {
    animation: logoFadeIn 0.6s ease-out;
}

/* Menu items stagger animation */
#primary-menu li {
    animation: menuItemSlide 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(-10px);
    display: flex;
    gap: 3px;
    flex-flow: row-reverse;
    align-items: center;
}

#primary-menu li:nth-child(1) { animation-delay: 0.1s; }
#primary-menu li:nth-child(2) { animation-delay: 0.2s; }
#primary-menu li:nth-child(3) { animation-delay: 0.3s; }
#primary-menu li:nth-child(4) { animation-delay: 0.4s; }
#primary-menu li:nth-child(5) { animation-delay: 0.5s; }
#primary-menu li:nth-child(6) { animation-delay: 0.6s; }
#primary-menu li:nth-child(7) { animation-delay: 0.7s; }

@keyframes menuItemSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
--------------------------------------------- */
.widget-area {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 2rem;
}

.widget {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

h3.widget-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.widget-content {
    padding: 1.5rem;
}

aside#secondary {
    position: sticky;
    top: 20px;
    height: fit-content;
}
.widget ul,
.widget ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul li {
    margin-bottom: 0;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.widget ul li:hover {
    background: #f8f9fa;
    padding-left: 20px;
}

.widget ul li:last-child {
    border: none;
}

.widget ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #ec2b8c;
}
.widget .search-form {
    padding: 1rem;
}

.widget .search-form label,
.widget .search-form label input {
    width: 100%;
}

.widget .search-form input.search-submit {
    width: 100%;
    border: none;
    background: #ec2b8c;
    color: #fff;
    text-transform: uppercase;
    min-height: 40px;
    font-weight: 500;
    border-radius: 8px;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.widget .search-form input.search-submit:hover {
    background: #d91a7a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 43, 140, 0.3);
}

.widget .search-form input[type="search"] {
    padding: 12px 15px;
    min-height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.widget .search-form input[type="search"]:focus {
    outline: none;
    border-color: #ec2b8c;
    box-shadow: 0 0 0 3px rgba(236, 43, 140, 0.1);
}
.widget.widget_block h3,
.widget.widget_block h2,
h3.widget-title,
h2.widget-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Footer Widget Styles */
.footer-widget, 
.footer-widget p, 
.footer-widget a, 
.footer-widget #wp-calendar caption,
.footer-widget .search-form input.search-submit{
    color: #fff;
}

.footer-widget .widget-title {
    background: inherit;
    color: #fff;
    text-align: left;
    border-bottom: 2px solid #ccc;
}

.footer-widget ul li {
    border-bottom: 1px solid #555;
}

/* Blog Grid Layout Improvements */
.row[data-masonry] {
    gap: 2rem;
}

.row[data-masonry] .col-lg-4,
.row[data-masonry] .col-md-6 {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Content spacing improvements */
.site-main {
    padding: 2rem 0;
}

.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .row[data-masonry] {
        gap: 1rem;
    }
    
    .row[data-masonry] .col-lg-4,
    .row[data-masonry] .col-md-6 {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .card.aakcard {
        border-radius: 8px;
    }
    
    .widget {
        border-radius: 8px;
        margin-bottom: 1rem;
    }
}

.footer-widget .widget-title {
    background: inherit;
    color: #fff;
    text-align: left;
    border-bottom: 2px solid #ccc;
}
.footer-widget ul li {
    border-bottom: 1px solid #555;
}

/*content style*/
.entry-meta, .entry-meta a {
    font-size: 12px;
    color: #ec2b8c;
}
.card.aakcard {
    -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.08);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card.aakcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
}

.card.aakcard .card-body {
    padding: 1.5rem;
}

.card.aakcard .card-img-top {
    transition: transform 0.3s ease;
    border-radius: 0;
}

.card.aakcard:hover .card-img-top {
    transform: scale(1.05);
}

.card.aakcard .post-thumbnail {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.card-title a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #ec2b8c;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card .entry-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.card .entry-meta a {
    color: #ec2b8c;
    text-decoration: none;
}

.card .entry-meta a:hover {
    text-decoration: underline;
}
.sticky .entry-header, 
.tag-sticky-2 .entry-header {
    text-align: center;
    margin-bottom: 2rem;
}
.aak-list-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.card.aak-list-blog {
    box-shadow: 0 0 70px rgba(0,0,0,.11);
}
.card-text.col-lg-8.col-md-6.col-sm-12 {
    padding-left: 0;
}

.card-body-text h5 {
    margin-bottom: 5px;
    margin-top: 0;
}
.card-body-text {
    padding: 5px 15px 5px 5px;
}
.aakno-img .card-body-text {
    padding: 15px;
}
.aak-blog-text,
.aak-blog-img {
    width: 50%;
}
.aak-blog-img a {
    display: block;
}
.aak-blog-img img {
    width: 100%;
}
.aak-blog-img {
    -ms-flex-preferred-size: 550px;
        flex-basis: 550px;
}
.card-body .blockquote-footer {
    margin-top: 0;
}
.aak-btext,
.widget-area .widget,
.site-footer,
.archive-header,
.search-header,
.aak-page,
.site-main .comment-navigation, 
.site-main .posts-navigation, 
.site-main .post-navigation,
.site-footer,
.aak-blog-list,
.aak-single-list,
.comments-area,nav.navigation.pagination .nav-links a,
nav.navigation.pagination .nav-links span {
    -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.08);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

/* Comments Area Enhanced Styling */
.comments-area {
    padding: 30px;
    margin-top: 40px;
}

.comments-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ec2b8c;
    position: relative;
}

.comments-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ec2b8c, #f06292);
}

/* Comment List */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .comment {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ec2b8c;
    transition: all 0.3s ease;
}

.comment-list .comment:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comment-list .children {
    margin-top: 20px;
    margin-left: 30px;
    padding-left: 20px;
    border-left: 2px solid #e0e0e0;
}

/* Comment Meta */
.comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.comment-author img {
    border-radius: 50%;
    border: 3px solid #ec2b8c;
    padding: 2px;
}

.comment-author .fn {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.comment-metadata {
    color: #666;
    font-size: 14px;
}

.comment-metadata a {
    color: #ec2b8c;
    text-decoration: none;
}

.comment-metadata a:hover {
    text-decoration: underline;
}

/* Comment Content */
.comment-content {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* Reply Link */
.reply {
    text-align: right;
}

.comment-reply-link {
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.comment-reply-link:hover {
    background: linear-gradient(135deg, #d91a7a, #ec2b8c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 43, 140, 0.4);
    color: #fff;
}

/* Comment Form */
.comment-respond {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
}

.comment-reply-title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-reply-title::before {
    content: "💬";
    font-size: 24px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: #ec2b8c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(236, 43, 140, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

#submit {
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#submit:hover {
    background: linear-gradient(135deg, #d91a7a, #ec2b8c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 43, 140, 0.4);
}
.aak-btext {
    margin-left: -120px;
}
.no-img .aak-btext{
    margin-left: 0;
}
/* Pagination Styling */
nav.navigation.pagination {
    text-align: center;
    display: block;
    margin: 40px 0;
    width: 100%;
    padding: 30px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

nav.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

nav.navigation.pagination .nav-links a,
nav.navigation.pagination .nav-links span {
    border: 2px solid #e0e0e0;
    padding: 10px 16px;
    text-transform: none;
    background: #fff;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 44px;
    text-align: center;
}

nav.navigation.pagination .nav-links a:hover {
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    border-color: #ec2b8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 43, 140, 0.3);
}

nav.navigation.pagination .nav-links .current,
nav.navigation.pagination .nav-links span.current {
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    border-color: #ec2b8c;
    box-shadow: 0 4px 15px rgba(236, 43, 140, 0.3);
}

nav.navigation.pagination .nav-links .prev,
nav.navigation.pagination .nav-links .next {
    font-weight: 600;
    padding: 10px 20px;
}

nav.navigation.pagination .nav-links .prev::before {
    content: "← ";
    margin-right: 5px;
}

nav.navigation.pagination .nav-links .next::after {
    content: " →";
    margin-left: 5px;
}
.aak-blog-text {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    position: relative;
    overflow: inherit;
}
.no-img .aak-blog-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
/* Entry Footer - Categories and Tags Styling */
.entry-footer, 
.entry-footer a {
    font-size: 14px;
    color: #666;
}

.entry-footer {
    background: transparent;
    padding: 20px 0;
    text-align: center;
    margin: 30px 0 20px;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.entry-footer span {
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.entry-footer span:hover {
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 43, 140, 0.3);
}

.entry-footer span a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
    position: relative;
}

.entry-footer .cat-links::before {
    content: "📁 ";
    margin-right: 5px;
}

.entry-footer .tags-links::before {
    content: "🏷️ ";
    margin-right: 5px;
}

/* Individual category and tag links */
.entry-footer .cat-links a,
.entry-footer .tags-links a {
    display: inline-block;
    margin: 2px 4px;
    padding: 4px 12px;
    background: #ec2b8c;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.entry-footer .cat-links a:hover,
.entry-footer .tags-links a:hover {
    background: #d91a7a;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(236, 43, 140, 0.4);
}
.page .entry-footer {
    display: inline-block;
    width: auto;
    background: inherit;
}
.card-columns .post {
    margin-bottom: 10px;
}
form.post-password-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
}

form.post-password-form p {
    width: 100%;
}
.entry-footer, .entry-footer a {
    font-size: 12px;
}
.entry-footer span {
    margin-right: 15px;
}

/* Post Navigation - Previous/Next Posts */
.site-main .comment-navigation, 
.site-main .posts-navigation, 
.site-main .post-navigation {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    margin: 40px 0;
    overflow: hidden;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    padding: 25px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.post-navigation .nav-previous::before,
.post-navigation .nav-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    transition: left 0.3s ease;
    z-index: 1;
}

.post-navigation .nav-previous:hover::before,
.post-navigation .nav-next:hover::before {
    left: 0;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    display: block;
}

.post-navigation .nav-previous:hover a,
.post-navigation .nav-next:hover a {
    color: #fff;
}

.post-navigation .nav-previous {
    border-right: 1px solid #f0f0f0;
    text-align: left;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-previous a::before {
    content: "← ";
    font-size: 18px;
    margin-right: 8px;
}

.post-navigation .nav-next a::after {
    content: " →";
    font-size: 18px;
    margin-left: 8px;
}

/* Posts Navigation (Blog Page) */
.posts-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.posts-navigation .nav-previous,
.posts-navigation .nav-next {
    background: linear-gradient(135deg, #ec2b8c, #f06292);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.posts-navigation .nav-previous:hover,
.posts-navigation .nav-next:hover {
    background: linear-gradient(135deg, #d91a7a, #ec2b8c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 43, 140, 0.4);
}
.sticky .card-body {
    background: #ededed;
}

@media screen and (max-width: 992px) {
    .aak-main-nav {
        justify-content: flex-end;
        margin: auto;
        text-align: right;
    }
    /*.aadhs-two .aak-main-nav {
        float: right;
    }*/
    
    .aakmstyle1 .aak-main-menu {
        position: relative;
    }
    .site-navigation {
        position: relative;
    }

    .menu-testing-menu-container {
        position: absolute;
        right: 0;
        top: 60px;
        max-width: 450px;
        text-align: left;
        background: #fff;
        z-index: 9999;
        box-shadow: 0 0 70px rgba(0,0,0,.11);
        left: 0;
        margin: auto;
    }
    .aak-blog-text, 
    .aak-blog-img {
        width: 100%;
        -ms-flex-preferred-size: inherit;
            flex-basis: inherit;
    }
    .aak-list-flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
    }
    .aak-btext {
        margin-left: 0;
    }
    .main-navigation ul> li.befocus.menushow> ul.sub-menu,
    .main-navigation ul> li.befocus.menushow> ul.children{
        display: block !important;
    }
    .main-navigation ul> li.befocus> ul.sub-menu,
    .main-navigation ul> li.befocus> ul.children{
        display: none !important;
    }

}
.widget ul li.wp-block-social-link {
    padding: 0;
}
.wp-block-calendar tbody td{
    color: #fff;
}
.wp-block-calendar th {
    color: #000;
}
@media screen and (max-width: 767px) {
    span.bhtop-text.pt-2 {
        display: block;
        text-align: center;
    }
    .aak-main-nav {
        text-align: center;
    }
    .d-flex.aak-menu-wrap {
        flex-flow: column wrap;
    }
    .card-text.col-lg-8.col-md-6.col-sm-12 {
        padding-left: 15px;
    }
    .card-body-text {
        padding: 15px;
    }

 }
@media screen and (max-width: 480px) {
    .aakmenu-display.d-flex {
        flex-direction: column;
    }
    .topmenu-serch {
        justify-content: center;
    }
    .aak-main-nav {
        text-align: center;
        width: 100%;
        position: relative;
    }
    .menu-testing-menu-container{
        top: 50px;
    }
    .headerlogo-text {
        text-align: center;
    }

}