/*
Theme Name: VasuDigi Theme
Theme URI: https://sumitscience.com
Author: VasuDigi Academy
Author URI: https://sumitscience.com
Description: Lightweight, Mobile First, SEO Optimized Educational WordPress Theme specially developed for VasuDigi Academy.

Version: 1.0.0

Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 8.2

License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: vasudigi-theme

Tags:
education,
blog,
news,
responsive,
custom-logo,
custom-menu,
featured-images,
sticky-post,
translation-ready,
accessibility-ready,
seo,
adsense,
mobile-first
*/

/*
===========================================
VasuDigi Theme
Developed for:
https://sumitscience.com

Copyright © VasuDigi Academy
===========================================
*/
/*==================================================
 VasuDigi Theme
 Global Layout System
==================================================*/

/*------------------------------
 Global Box Sizing
------------------------------*/

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/*------------------------------
 Body
------------------------------*/

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/*------------------------------
 Main Site Container
------------------------------*/

.vda-site-main {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
}

/*------------------------------
 Content + Sidebar
------------------------------*/

.vda-content-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
}

/*------------------------------
 Main Column
------------------------------*/

.vda-main-column {
    width: 100%;
    min-width: 0;
}

/*------------------------------
 Sidebar
------------------------------*/

.vda-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: sticky;
    top: 90px;
    align-self: start;
    box-sizing: border-box;
}

/*------------------------------
 Widget
------------------------------*/

.vda-sidebar .widget {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 24px;
    padding: 20px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

/*------------------------------
 Widget Title
------------------------------*/

.vda-sidebar .widget-title {
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d6efd;
    font-size: 20px;
    line-height: 1.4;
}

/*------------------------------
 Links
------------------------------*/

.vda-sidebar a {
    text-decoration: none;
}

/*------------------------------
 Images
------------------------------*/

img {
    max-width: 100%;
    height: auto;
}

/*------------------------------
 Tables
------------------------------*/

table {
    max-width: 100%;
}

/*------------------------------
 WordPress Wide Alignment
------------------------------*/

.alignwide {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
/*==================================================
 VasuDigi Theme
 Responsive Layout
==================================================*/

/*=========================================
 TABLET
=========================================*/

@media (max-width: 1024px) {

    .vda-site-main {
        max-width: 100%;
        padding: 25px 18px;
    }

    .vda-content-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 22px;
    }

}


/*=========================================
 MOBILE
=========================================*/

@media (max-width: 767px) {

    /* Main Container */

    .vda-site-main {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 0;
    }


    /* Main Content + Sidebar */

    .vda-content-layout {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }


    /* Main Content */

    .vda-main-column {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* Sidebar */

    .vda-sidebar {
        width: 100%;
        max-width: 100%;
        position: static;
        top: auto;
    }


    /* Widgets */

    .vda-sidebar .widget {
        width: 100%;
        max-width: 100%;
        margin-bottom: 18px;
        padding: 18px;
    }


    /* Widget Title */

    .vda-sidebar .widget-title {
        font-size: 18px;
        margin-bottom: 13px;
    }


    /* Prevent Long Content Overflow */

    .vda-main-column,
    .vda-main-column article,
    .vda-main-column p,
    .vda-main-column h1,
    .vda-main-column h2,
    .vda-main-column h3,
    .vda-main-column h4,
    .vda-main-column h5,
    .vda-main-column h6 {
        max-width: 100%;
    }


    /* Images */

    .vda-main-column img,
    .vda-sidebar img {
        max-width: 100%;
        height: auto;
    }


    /* Videos / Iframes */

    .vda-main-column iframe,
    .vda-sidebar iframe {
        max-width: 100%;
    }


    /* Tables */

    .vda-main-column table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }


    /* WordPress Wide Blocks */

    .alignwide,
    .alignfull {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-site-main {
        padding-left: 0;
        padding-right: 0;
    }

    .vda-sidebar .widget {
        padding: 15px;
    }

}

/*==================================================
 VasuDigi Theme
 Header + Sticky Navigation
==================================================*/

/*=========================================
 SITE HEADER
=========================================*/

.vda-site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8edf3;
    position: relative;
    z-index: 1000;
}


/*=========================================
 BRAND CONTAINER
=========================================*/

.vda-brand-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1px 0;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
}

/*=========================================
 LOGO
=========================================*/

.vda-site-logo {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vda-site-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.vda-site-logo .custom-logo {
    max-height: 110px;
}

/*-----------------------------------------
 Header Wide Banner
-----------------------------------------*/

.vda-header-banner-link {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.vda-header-banner {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
}

.vda-site-title {
    display: inline-block;
    color: #173b70;
    text-decoration: none;
    font-size: 32px;
    font-weight: 800;
}


/*=========================================
 STICKY NAVIGATION
=========================================*/

.vda-sticky-navigation {
    width: 100%;
    background: #111827;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .12);
}


/*=========================================
 NAVIGATION CONTAINER
=========================================*/

.vda-navigation-container {
    width: 100%;
    max-width: 1200px;
    min-height: 58px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    gap: 8px;
}


/*=========================================
 HOME BUTTON
=========================================*/

.vda-home-link {
    min-width: 48px;
    height: 44px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;

    transition:
        background .25s ease,
        transform .25s ease;
}

.vda-home-link:hover {
    background: rgba(255, 255, 255, .12);
}

.vda-home-icon {
    font-size: 22px;
    line-height: 1;
}

.vda-home-text {
    font-size: 15px;
    font-weight: 600;
}


/*=========================================
 PRIMARY MENU
=========================================*/

.vda-primary-menu-wrapper {
    flex: 1;
    min-width: 0;
}

.vda-primary-menu {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.vda-primary-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.vda-primary-menu > li > a {
    display: flex;
    align-items: center;

    min-height: 44px;
    padding: 0 13px;

    color: #ffffff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-radius: 7px;

    transition:
        background .25s ease,
        color .25s ease;
}

.vda-primary-menu > li > a:hover,
.vda-primary-menu > li.current-menu-item > a,
.vda-primary-menu > li.current-menu-ancestor > a {
    background: rgba(255, 255, 255, .13);
    color: #ffffff;
}


/*=========================================
 SUB MENU
=========================================*/

.vda-primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 210px;
    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 10px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

    z-index: 10000;
}

.vda-primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vda-primary-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.vda-primary-menu .sub-menu a {
    display: block;

    padding: 10px 15px;

    color: #222222;
    text-decoration: none;

    font-size: 14px;
    line-height: 1.4;
}

.vda-primary-menu .sub-menu a:hover {
    background: #f2f6fb;
    color: #0d6efd;
}


/*=========================================
 SEARCH BUTTON
=========================================*/

.vda-search-toggle {
    width: 46px;
    height: 44px;

    padding: 0;
    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #ffffff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.vda-search-toggle:hover {
    background: rgba(255, 255, 255, .12);
}

.vda-search-icon {
    font-size: 22px;
    line-height: 1;
}


/*=========================================
 MOBILE MENU BUTTON
=========================================*/

.vda-mobile-menu-toggle {
    display: none;

    min-width: 46px;
    height: 44px;

    padding: 0 10px;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #ffffff;

    align-items: center;
    justify-content: center;
    gap: 6px;

    cursor: pointer;
}

.vda-mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, .12);
}

.vda-menu-icon {
    font-size: 24px;
    line-height: 1;
}

.vda-menu-text {
    font-size: 14px;
    font-weight: 600;
}


/*=========================================
 SEARCH BOX
=========================================*/

.vda-search-box {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5eaf0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.vda-search-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 16px;
    box-sizing: border-box;
}

.vda-search-container form {
    width: 100%;
    display: flex;
    gap: 8px;
}

.vda-search-container input[type="search"] {
    flex: 1;
    min-width: 0;

    height: 44px;
    padding: 0 14px;

    border: 1px solid #dce4ed;
    border-radius: 8px;

    font-size: 15px;
    box-sizing: border-box;
}

.vda-search-container input[type="search"]:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .10);
}

.vda-search-container input[type="submit"] {
    height: 44px;
    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    background: #0d6efd;
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

/*==================================================
 VasuDigi Theme
 Search Results
==================================================*/

/*-----------------------------------------------
 Search Results Header
-----------------------------------------------*/

.vda-search-results-header {
    width: 100%;
    margin: 0 0 24px;
}

.vda-search-results-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #173b70;
}

.vda-search-results-title span {
    color: #0d6efd;
}


/*-----------------------------------------------
 Search Results List
-----------------------------------------------*/

.vda-search-results-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/*-----------------------------------------------
 Search Result Card
-----------------------------------------------*/

.vda-search-result-card {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.vda-search-result-card:hover {
    transform: translateY(-2px);
    border-color: #d6e0eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}


/*-----------------------------------------------
 Search Result Link
-----------------------------------------------*/

.vda-search-result-link {
    display: flex;
    width: 100%;
    color: inherit;
    text-decoration: none;
    box-sizing: border-box;
}


/*-----------------------------------------------
 Featured Image
-----------------------------------------------*/

.vda-search-result-image {
    flex: 0 0 220px;
    width: 220px;
    min-height: 150px;
    background: #f3f6f9;
    overflow: hidden;
}

.vda-search-result-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}


/*-----------------------------------------------
 Image Placeholder
-----------------------------------------------*/

.vda-search-result-placeholder {
    width: 100%;
    height: 100%;
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
}


/*-----------------------------------------------
 Result Content
-----------------------------------------------*/

.vda-search-result-content {
    flex: 1;
    min-width: 0;
    padding: 20px 22px;
    box-sizing: border-box;
}


/*-----------------------------------------------
 Result Title
-----------------------------------------------*/

.vda-search-result-title {
    margin: 0 0 7px;

    color: #173b70;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 750;
}


/*-----------------------------------------------
 Result Meta
-----------------------------------------------*/

.vda-search-result-meta {
    margin: 0 0 10px;

    color: #7a8796;
    font-size: 13px;
    line-height: 1.4;
}


/*-----------------------------------------------
 Result Excerpt
-----------------------------------------------*/

.vda-search-result-excerpt {
    margin: 0;

    color: #4d5968;
    font-size: 15px;
    line-height: 1.65;
}


/*-----------------------------------------------
 Search Pagination
-----------------------------------------------*/

.vda-main-column .navigation.pagination {
    margin-top: 28px;
}

.vda-main-column .navigation.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.vda-main-column .navigation.pagination a,
.vda-main-column .navigation.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;

    box-sizing: border-box;

    border: 1px solid #dce3eb;
    border-radius: 8px;

    background: #ffffff;
    color: #173b70;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.vda-main-column .navigation.pagination a:hover {
    background: #f3f7fb;
    border-color: #0d6efd;
    color: #0d6efd;
}

.vda-main-column .navigation.pagination .current {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}


/*-----------------------------------------------
 No Search Results
-----------------------------------------------*/

.vda-search-no-results {
    width: 100%;
    padding: 45px 25px;
    box-sizing: border-box;

    text-align: center;

    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
}

.vda-search-no-results-title {
    margin: 0 0 12px;

    color: #173b70;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
}

.vda-search-no-results-text {
    max-width: 650px;
    margin: 0 auto 22px;

    color: #5f6b78;
    font-size: 15px;
    line-height: 1.7;
}

.vda-search-no-results-form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.vda-search-no-results-form form {
    width: 100%;
    display: flex;
    gap: 8px;
}

.vda-search-no-results-form input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 14px;

    box-sizing: border-box;

    border: 1px solid #dce3eb;
    border-radius: 8px;

    font-size: 15px;
}

.vda-search-no-results-form input[type="submit"] {
    height: 44px;
    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    background: #0d6efd;
    color: #ffffff;

    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}


/*==================================================
 MOBILE
==================================================*/

@media (max-width: 767px) {

    .vda-search-results-title {
        font-size: 23px;
    }

    .vda-search-results-list {
        gap: 14px;
    }

    .vda-search-result-link {
        display: block;
    }

    .vda-search-result-image {
        width: 100%;
        height: 190px;
        min-height: 0;
    }

    .vda-search-result-image img {
        width: 100%;
        height: 190px;
        min-height: 0;
    }

    .vda-search-result-placeholder {
        height: 190px;
        min-height: 0;
    }

    .vda-search-result-content {
        padding: 16px;
    }

    .vda-search-result-title {
        font-size: 19px;
    }

    .vda-search-result-excerpt {
        font-size: 14px;
    }

    .vda-search-no-results {
        padding: 35px 18px;
    }

    .vda-search-no-results-title {
        font-size: 23px;
    }

    .vda-search-no-results-form form {
        flex-direction: column;
    }

    .vda-search-no-results-form input[type="search"],
    .vda-search-no-results-form input[type="submit"] {
        width: 100%;
    }

}

/*==================================================
 VasuDigi Theme
 404 Page
==================================================*/

/*-----------------------------------------------
 404 Main Box
-----------------------------------------------*/

.vda-404-page {
    width: 100%;
    padding: 55px 30px;
    box-sizing: border-box;

    text-align: center;

    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}


/*-----------------------------------------------
 404 Number
-----------------------------------------------*/

.vda-404-number {
    margin: 0 0 8px;

    color: #0d6efd;

    font-size: 82px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}


/*-----------------------------------------------
 404 Title
-----------------------------------------------*/

.vda-404-title {
    margin: 0 0 14px;

    color: #173b70;

    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
}


/*-----------------------------------------------
 404 Message
-----------------------------------------------*/

.vda-404-message {
    max-width: 650px;
    margin: 0 auto 25px;

    color: #5f6b78;

    font-size: 16px;
    line-height: 1.7;
}


/*-----------------------------------------------
 404 Actions
-----------------------------------------------*/

.vda-404-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}


/*-----------------------------------------------
 Home Button
-----------------------------------------------*/

.vda-404-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 22px;

    box-sizing: border-box;

    border-radius: 8px;

    background: #0d6efd;
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.vda-404-home-button:hover {
    background: #0b5ed7;
    color: #ffffff;

    transform: translateY(-1px);

    box-shadow: 0 6px 16px rgba(13, 110, 253, .20);
}


/*-----------------------------------------------
 Search Section
-----------------------------------------------*/

.vda-404-search {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;
    padding-top: 25px;

    border-top: 1px solid #e5eaf0;
}


/*-----------------------------------------------
 Search Title
-----------------------------------------------*/

.vda-404-search-title {
    margin: 0 0 15px;

    color: #173b70;

    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}


/*-----------------------------------------------
 Search Form
-----------------------------------------------*/

.vda-404-search-form {
    width: 100%;
}

.vda-404-search-form form {
    width: 100%;

    display: flex;
    gap: 8px;
}

.vda-404-search-form input[type="search"] {
    flex: 1;
    min-width: 0;

    height: 44px;
    padding: 0 14px;

    box-sizing: border-box;

    border: 1px solid #dce3eb;
    border-radius: 8px;

    background: #ffffff;

    color: #263442;

    font-size: 15px;
}

.vda-404-search-form input[type="search"]:focus {
    outline: none;

    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px
        rgba(13, 110, 253, .10);
}

.vda-404-search-form input[type="submit"] {
    height: 44px;
    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    background: #0d6efd;
    color: #ffffff;

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;

    transition:
        background .25s ease,
        transform .25s ease;
}

.vda-404-search-form input[type="submit"]:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}


/*==================================================
 MOBILE
==================================================*/

@media (max-width: 767px) {

    .vda-404-page {
        padding: 40px 18px;
    }


    .vda-404-number {
        font-size: 64px;
    }


    .vda-404-title {
        font-size: 24px;
    }


    .vda-404-message {
        font-size: 14px;
    }


    .vda-404-search-title {
        font-size: 17px;
    }


    .vda-404-search-form form {
        flex-direction: column;
    }


    .vda-404-search-form input[type="search"],
    .vda-404-search-form input[type="submit"] {
        width: 100%;
    }

}


/*==================================================
 SMALL MOBILE
==================================================*/

@media (max-width: 380px) {

    .vda-404-page {
        padding: 35px 14px;
    }


    .vda-404-number {
        font-size: 56px;
    }


    .vda-404-title {
        font-size: 22px;
    }

}

/*==================================================
 VasuDigi Theme
 Comments
==================================================*/

/*-----------------------------------------------
 Comments Area
-----------------------------------------------*/

.vda-comments-area {
    width: 100%;
    margin-top: 35px;
    padding: 25px;
    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;
}


/*-----------------------------------------------
 Comments Title
-----------------------------------------------*/

.vda-comments-title {
    margin: 0 0 22px;
    padding-bottom: 12px;

    border-bottom: 2px solid #0d6efd;

    color: #173b70;
    font-size: 23px;
    line-height: 1.4;
    font-weight: 800;
}


/*-----------------------------------------------
 Comment List
-----------------------------------------------*/

.vda-comment-list {
    margin: 0;
    padding: 0;

    list-style: none;
}


/*-----------------------------------------------
 Individual Comment
-----------------------------------------------*/

.vda-comment-list .comment {
    margin: 0 0 20px;
    padding: 18px;

    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 10px;
}


/*-----------------------------------------------
 Comment Body
-----------------------------------------------*/

.vda-comment-list .comment-body {
    position: relative;
}


/*-----------------------------------------------
 Comment Author
-----------------------------------------------*/

.vda-comment-list .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 8px;
}

.vda-comment-list .comment-author .avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    object-fit: cover;
}

.vda-comment-list .comment-author .fn {
    color: #173b70;
    font-size: 16px;
    font-weight: 700;
}

.vda-comment-list .comment-author .says {
    color: #7a8796;
    font-size: 13px;
}


/*-----------------------------------------------
 Comment Metadata
-----------------------------------------------*/

.vda-comment-list .comment-metadata {
    margin: 0 0 12px;
    padding-left: 58px;

    font-size: 12px;
}

.vda-comment-list .comment-metadata a {
    color: #7a8796;
    text-decoration: none;
}

.vda-comment-list .comment-metadata a:hover {
    color: #0d6efd;
}


/*-----------------------------------------------
 Comment Content
-----------------------------------------------*/

.vda-comment-list .comment-content {
    color: #4d5968;
    font-size: 15px;
    line-height: 1.7;
}

.vda-comment-list .comment-content p {
    margin: 0 0 10px;
}

.vda-comment-list .comment-content p:last-child {
    margin-bottom: 0;
}


/*-----------------------------------------------
 Reply
-----------------------------------------------*/

.vda-comment-list .reply {
    margin-top: 12px;
}

.vda-comment-list .reply a {
    display: inline-block;

    padding: 6px 12px;

    border: 1px solid #dce3eb;
    border-radius: 6px;

    background: #ffffff;
    color: #173b70;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.vda-comment-list .reply a:hover {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #ffffff;
}


/*-----------------------------------------------
 Nested Comments
-----------------------------------------------*/

.vda-comment-list .children {
    margin: 18px 0 0 35px;
    padding: 0;

    list-style: none;
}


/*-----------------------------------------------
 Comments Navigation
-----------------------------------------------*/

.vda-comments-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    margin-top: 25px;
    padding-top: 18px;

    border-top: 1px solid #e5eaf0;
}

.vda-comments-navigation a {
    color: #0d6efd;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.vda-comments-navigation a:hover {
    text-decoration: underline;
}


/*-----------------------------------------------
 Comment Form
-----------------------------------------------*/

.vda-comment-form {
    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid #e5eaf0;
}


/*-----------------------------------------------
 Comment Form Title
-----------------------------------------------*/

.vda-comment-form .comment-reply-title {
    margin: 0 0 18px;

    color: #173b70;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
}


/*-----------------------------------------------
 Comment Form Fields
-----------------------------------------------*/

.vda-comment-form form {
    width: 100%;
}

.vda-comment-form p {
    margin: 0 0 15px;
}

.vda-comment-form label {
    display: block;
    margin-bottom: 6px;

    color: #354250;

    font-size: 14px;
    font-weight: 600;
}

.vda-comment-form input[type="text"],
.vda-comment-form input[type="email"],
.vda-comment-form input[type="url"],
.vda-comment-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 11px 13px;

    border: 1px solid #dce3eb;
    border-radius: 8px;

    background: #ffffff;
    color: #263442;

    font-family: inherit;
    font-size: 15px;
}

.vda-comment-form textarea {
    min-height: 140px;
    resize: vertical;
}

.vda-comment-form input:focus,
.vda-comment-form textarea:focus {
    outline: none;

    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px
        rgba(13, 110, 253, .10);
}


/*-----------------------------------------------
 Comment Cookies Consent
-----------------------------------------------*/

.vda-comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vda-comment-form .comment-form-cookies-consent input {
    margin-top: 4px;
}

.vda-comment-form .comment-form-cookies-consent label {
    margin: 0;

    color: #697582;
    font-size: 13px;
    font-weight: 400;
}


/*-----------------------------------------------
 Submit Button
-----------------------------------------------*/

.vda-comment-form input[type="submit"] {
    min-height: 44px;
    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    background: #0d6efd;
    color: #ffffff;

    cursor: pointer;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    transition:
        background .25s ease,
        transform .25s ease;
}

.vda-comment-form input[type="submit"]:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}


/*-----------------------------------------------
 Logged-in User
-----------------------------------------------*/

.vda-comment-form .logged-in-as {
    margin-bottom: 15px;

    color: #697582;
    font-size: 13px;
}

.vda-comment-form .logged-in-as a {
    color: #0d6efd;
    text-decoration: none;
}


/*-----------------------------------------------
 Comments Closed
-----------------------------------------------*/

.vda-comments-closed {
    margin: 25px 0 0;
    padding: 15px;

    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 8px;

    color: #697582;
    font-size: 14px;
}


/*==================================================
 MOBILE
==================================================*/

@media (max-width: 767px) {

    .vda-comments-area {
        margin-top: 25px;
        padding: 18px;
        border-radius: 12px;
    }


    .vda-comments-title {
        font-size: 20px;
    }


    .vda-comment-list .comment {
        padding: 14px;
    }


    .vda-comment-list .comment-author .avatar {
        width: 40px;
        height: 40px;
    }


    .vda-comment-list .comment-author .fn {
        font-size: 15px;
    }


    .vda-comment-list .comment-metadata {
        padding-left: 50px;
    }


    .vda-comment-list .comment-content {
        font-size: 14px;
    }


    .vda-comment-list .children {
        margin-left: 15px;
    }


    .vda-comments-navigation {
        flex-direction: column;
        align-items: flex-start;
    }


    .vda-comment-form .comment-reply-title {
        font-size: 19px;
    }

}


/*==================================================
 SMALL MOBILE
==================================================*/

@media (max-width: 380px) {

    .vda-comments-area {
        padding: 15px;
    }


    .vda-comment-list .comment {
        padding: 12px;
    }


    .vda-comment-list .children {
        margin-left: 8px;
    }

}

/*=========================================
 TABLET
=========================================*/

@media (max-width: 900px) {

    .vda-primary-menu > li > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }

    .vda-home-text {
        display: none;
    }

}


/*=========================================
 MOBILE
=========================================*/

@media (max-width: 767px) {

    .vda-brand-container {
        padding: 0;
    }

    .vda-site-logo .custom-logo {
        max-height: 75px;
    }

    .vda-site-title {
        font-size: 25px;
    }


    .vda-navigation-container {
        min-height: 54px;
        padding: 0 10px;
        gap: 5px;
    }


    .vda-home-link {
        width: 44px;
        min-width: 44px;
        height: 42px;
        padding: 0;
    }

    .vda-home-icon {
        font-size: 21px;
    }


    .vda-mobile-menu-toggle {
        display: inline-flex;
    }


    .vda-primary-menu-wrapper {
        display: none;

        position: absolute;
        top: 54px;
        left: 0;
        right: 0;

        width: 100%;

        background: #111827;

        box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    }


    .vda-primary-menu-wrapper.vda-menu-open {
        display: block;
    }


    .vda-primary-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        width: 100%;
    }


    .vda-primary-menu > li {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }


    .vda-primary-menu > li > a {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;

        box-sizing: border-box;

        border-radius: 0;
    }


    .vda-primary-menu .sub-menu {
        position: static;

        display: none;

        width: 100%;
        min-width: 0;

        opacity: 1;
        visibility: visible;
        transform: none;

        border: 0;
        border-radius: 0;
        box-shadow: none;

        background: rgba(255, 255, 255, .06);
    }


    .vda-primary-menu li:hover > .sub-menu {
        display: none;
    }


    .vda-search-toggle {
        width: 44px;
        min-width: 44px;
        height: 42px;
    }


    .vda-search-container {
        padding: 12px 10px;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-brand-container {
        padding-left: 0;
        padding-right: 0;
    }

    .vda-site-logo .custom-logo {
        max-height: 65px;
    }

    .vda-menu-text {
        display: none;
    }

}

/*==================================================
 VasuDigi Theme
 Footer - Main + Bars
==================================================*/

/*=========================================
 MAIN FOOTER
=========================================*/

.vda-site-footer {
    width: 100%;
    margin-top: 40px;
    background: #111827;
    color: #ffffff;
}


/*=========================================
 FOOTER MAIN CONTAINER
=========================================*/

.vda-footer-main {
    width: 100%;
    background: #111827;
}

.vda-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 20px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}


/*=========================================
 FOOTER COLUMN
=========================================*/

.vda-footer-column {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}


/*=========================================
 FOOTER HEADING
=========================================*/

.vda-footer-title {
    margin: 0 0 14px;
    padding: 0;

    color: #ffffff !important;

    font-size: 22px !important;
    line-height: 1.4;
    font-weight: 700;

    border: 0 !important;
}


/*=========================================
 FOOTER MENU
=========================================*/

.vda-footer-menu {
    width: 100%;
}

.vda-footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vda-footer-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vda-footer-nav li a {
    display: block;

    padding: 7px 0 7px 15px;

    color: #d7deea !important;
    text-decoration: none;

    font-size: 16px !important;
    line-height: 1.5;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.vda-footer-nav li a:hover,
.vda-footer-nav li a:focus {
    color: #ffffff !important;
    padding-left: 20px;
}


/*=========================================
 FOOTER WIDGET / BLOCK EDITOR
=========================================*/

.vda-footer-widget-area {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 18px;
    box-sizing: border-box;
}

.vda-footer-widget-area > *,
.vda-footer-widget-area .widget,
.vda-footer-widget-area .wp-block-group,
.vda-footer-widget-area .wp-block-columns,
.vda-footer-widget-area .wp-block-column {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.vda-footer-widget-area .widget {
    margin: 0 0 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.vda-footer-widget-area .widget-title {
    margin: 0 0 10px;
    padding: 0;
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1.4;
    font-weight: 700;
    border: 0 !important;
}

.vda-footer-widget-area p,
.vda-footer-widget-area li {
    color: #d7deea;
    font-size: 15px;
    line-height: 1.6;
}

.vda-footer-widget-area a,
.vda-footer-widget-area a:visited {
    color: #d7deea !important;
    font-size: 14px !important;
    line-height: 1.6;
    text-decoration: none;
}

.vda-footer-widget-area a:hover,
.vda-footer-widget-area a:focus {
    color: #ffffff !important;
    text-decoration: underline;
}
.vda-footer-widget-area ul,
.vda-footer-widget-area ol {
    margin-top: 0;
    margin-bottom: 10px;
}

/*=========================================
 FOOTER BAR 1
 SOCIAL AREA
=========================================*/

.vda-footer-bar-one {
    width: 100%;

    background: #0b1220;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.vda-footer-bar-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vda-footer-social {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    flex-wrap: wrap;
}


/*=========================================
 FOOTER BAR 2
 COPYRIGHT
=========================================*/

.vda-footer-bar-two {
    width: 100%;
    background: #080d17;
}

.vda-copyright {
    width: 100%;
    margin: 0;

    color: #aeb8c7;

    font-size: 13px;
    line-height: 1.6;

    text-align: center;
}


/*=========================================
 TABLET
=========================================*/

@media (max-width: 900px) {

    .vda-footer-container {
        gap: 25px;
        padding-left: 18px;
        padding-right: 18px;
    }

}


/*=========================================
 MOBILE
=========================================*/

@media (max-width: 767px) {

    .vda-footer-container {
        width: 100%;
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 35px 24px;
    }

    .vda-footer-title {
        font-size: 21px !important;
    }

    .vda-footer-nav li a {
        font-size: 14px !important;
    }

    .vda-footer-bar-container {
        padding-left: 14px;
        padding-right: 14px;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-footer-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vda-footer-title {
        font-size: 18px;
    }

    .vda-footer-nav li a {
        font-size: 13px;
    }

    .vda-copyright {
        font-size: 12px;
    }

}

/*==================================================
 VasuDigi Theme
 Footer Social Buttons
==================================================*/

/*-----------------------------------------
 Social Button
-----------------------------------------*/

.vda-social-button {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 12px;

    color: #ffffff;
    text-decoration: none;

    border-radius: 50px;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        opacity .25s ease,
        box-shadow .25s ease;
}


/*-----------------------------------------
 Social Icon
-----------------------------------------*/

.vda-social-icon {
    width: 21px;
    height: 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.vda-social-icon svg {
    width: 100%;
    height: 100%;

    display: block;

    fill: currentColor;
}


/*-----------------------------------------
 Social Label
-----------------------------------------*/

.vda-social-label {
    display: none;

    font-size: 14px;
    line-height: 1;
    font-weight: 600;

    white-space: nowrap;
}


/*-----------------------------------------
 Hover
-----------------------------------------*/

.vda-social-button:hover {
    color: #ffffff;

    transform: translateY(-2px);

    opacity: .92;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, .18);
}


/*-----------------------------------------
 Individual Brand Colors
-----------------------------------------*/

.vda-social-facebook {
    background: #1877f2;
}

.vda-social-youtube {
    background: #ff0000;
}

.vda-social-instagram {
    background: #e4405f;
}

.vda-social-telegram {
    background: #229ed9;
}

.vda-social-whatsapp {
    background: #25d366;
}

.vda-social-linkedin {
    background: #0a66c2;
}


/*-----------------------------------------
 Focus Accessibility
-----------------------------------------*/

.vda-social-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .75);
    outline-offset: 3px;
}


/*-----------------------------------------
 Mobile
-----------------------------------------*/

@media (max-width: 767px) {

    .vda-footer-social {
        gap: 9px;
    }

    .vda-social-button {
        width: 42px;
        height: 42px;

        padding: 0;
    }

    .vda-social-icon {
        width: 20px;
        height: 20px;
    }

}


/*-----------------------------------------
 Small Mobile
-----------------------------------------*/

@media (max-width: 380px) {

    .vda-footer-social {
        gap: 7px;
    }

    .vda-social-button {
        width: 40px;
        height: 40px;
    }

    .vda-social-icon {
        width: 19px;
        height: 19px;
    }

}

/*==================================================
 VasuDigi Theme
 Footer Bottom Bar
==================================================*/

/*-----------------------------------------
 Bottom Content
-----------------------------------------*/

.vda-footer-bottom-content {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/*-----------------------------------------
 Bottom Menu
-----------------------------------------*/

.vda-footer-bottom-menu {
    margin: 0;
    padding: 0;
}

.vda-footer-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 0;

    margin: 0;
    padding: 0;

    list-style: none;
}


/*-----------------------------------------
 Bottom Menu Links
-----------------------------------------*/

.vda-footer-bottom-nav li {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
}


/*
 * Separator
 */

.vda-footer-bottom-nav li:not(:last-child)::after {
    content: "|";

    margin: 0 10px;

    color: #667085;

    font-size: 13px;
}


/*-----------------------------------------
 Bottom Links
-----------------------------------------*/

.vda-footer-bottom-nav li a {
    color: #aeb8c7;

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color .2s ease;
}

.vda-footer-bottom-nav li a:hover {
    color: #ffffff;
}


/*-----------------------------------------
 Copyright
-----------------------------------------*/

.vda-footer-bar-two .vda-copyright {
    flex: 0 0 auto;

    margin: 0;

    color: #aeb8c7;

    font-size: 13px;
    line-height: 1.5;

    text-align: left;
}


/*=========================================
 MOBILE
=========================================*/

@media (max-width: 767px) {

    .vda-footer-bottom-content {
        flex-direction: column;

        justify-content: center;

        gap: 10px;

        text-align: center;
    }

    .vda-footer-bar-two .vda-copyright {
        text-align: center;
    }

    .vda-footer-bottom-nav {
        justify-content: center;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-footer-bottom-nav li a {
        font-size: 12px;
    }

    .vda-footer-bottom-nav li:not(:last-child)::after {
        margin-left: 7px;
        margin-right: 7px;
    }

    .vda-footer-bar-two .vda-copyright {
        font-size: 12px;
    }

}

/*==================================================
 VasuDigi Theme
 Post Share Buttons
==================================================*/

/*-----------------------------------------
 Share Wrapper
-----------------------------------------*/

.vda-post-share {
    width: 100%;
    max-width: 100%;
    margin: 30px 0 25px;
    padding: 18px;

    box-sizing: border-box;

    background: #f7f9fc;

    border: 1px solid #e3e8ef;
    border-radius: 12px;
}


/*-----------------------------------------
 Share Title
-----------------------------------------*/

.vda-post-share-title {
    margin: 0 0 14px;

    font-size: 17px;
    line-height: 1.4;

    font-weight: 700;
    color: #222;
}


/*-----------------------------------------
 Share Buttons Container
-----------------------------------------*/

.vda-post-share-buttons {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 9px;

    flex-wrap: wrap;
}


/*-----------------------------------------
 Share Button
-----------------------------------------*/

.vda-share-button {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 13px;

    border: 0;
    border-radius: 8px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        transform .2s ease,
        opacity .2s ease,
        box-shadow .2s ease;
}


/*-----------------------------------------
 Share Icon
-----------------------------------------*/

.vda-share-icon {
    min-width: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}


/*-----------------------------------------
 Hover
-----------------------------------------*/

.vda-share-button:hover {
    color: #ffffff;

    transform: translateY(-2px);

    opacity: .92;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, .15);
}


/*-----------------------------------------
 WhatsApp
-----------------------------------------*/

.vda-share-whatsapp {
    background: #25d366;
}


/*-----------------------------------------
 Facebook
-----------------------------------------*/

.vda-share-facebook {
    background: #1877f2;
}


/*-----------------------------------------
 Telegram
-----------------------------------------*/

.vda-share-telegram {
    background: #229ed9;
}


/*-----------------------------------------
 X
-----------------------------------------*/

.vda-share-x {
    background: #111111;
}


/*-----------------------------------------
 Copy Link
-----------------------------------------*/

.vda-share-copy {
    background: #5b6472;
}


/*-----------------------------------------
 Focus
-----------------------------------------*/

.vda-share-button:focus-visible {
    outline: 3px solid rgba(13, 110, 253, .35);
    outline-offset: 2px;
}


/*=========================================
 MOBILE
=========================================*/

@media (max-width: 767px) {

    .vda-post-share {
        margin-top: 25px;
        padding: 14px;
        border-radius: 10px;
    }

    .vda-post-share-buttons {
        gap: 7px;
    }

    .vda-share-button {
        min-height: 38px;

        padding-left: 10px;
        padding-right: 10px;

        font-size: 12px;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-post-share {
        padding: 12px;
    }

    .vda-share-button {
        min-width: 40px;
        width: 40px;
        height: 40px;

        padding: 0;

        border-radius: 50%;
    }

    .vda-share-label {
        display: none;
    }

    .vda-share-icon {
        font-size: 15px;
    }

}

/*==================================================
 VasuDigi Theme
 Share Button SVG Icons
==================================================*/

/*-----------------------------------------
 SVG Icon
-----------------------------------------*/

.vda-share-icon {
    width: 20px;
    height: 20px;

    min-width: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.vda-share-icon svg {
    width: 100%;
    height: 100%;

    display: block;

    fill: currentColor;
}


/*-----------------------------------------
 Share Button Alignment
-----------------------------------------*/

.vda-share-button {
    white-space: nowrap;
}

.vda-share-button svg {
    pointer-events: none;
}


/*-----------------------------------------
 Mobile
-----------------------------------------*/

@media (max-width: 767px) {

    .vda-share-icon {
        width: 19px;
        height: 19px;

        min-width: 19px;
    }

}


/*-----------------------------------------
 Small Mobile
-----------------------------------------*/

@media (max-width: 380px) {

    .vda-share-icon {
        width: 18px;
        height: 18px;

        min-width: 18px;
    }

}

/*==================================================
 VasuDigi Theme
 Existing Post Navigation
==================================================*/

/*-----------------------------------------
 Navigation Wrapper
-----------------------------------------*/

.vda-post-navigation {
    width: 100%;
    max-width: 100%;

    margin: 30px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;

    box-sizing: border-box;
}


/*-----------------------------------------
 Previous / Next Box
-----------------------------------------*/

.vda-previous-post,
.vda-next-post {
    min-width: 0;

    box-sizing: border-box;
}


/*-----------------------------------------
 Navigation Links
-----------------------------------------*/

.vda-post-navigation a {
    min-height: 64px;

    width: 100%;

    display: flex;
    align-items: center;

    padding: 14px 16px;

    box-sizing: border-box;

    background: #f7f9fc;

    border: 1px solid #e2e7ee;
    border-radius: 12px;

    color: #1f2937;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease,
        background .2s ease;
}


/*-----------------------------------------
 Previous
-----------------------------------------*/

.vda-previous-post a {
    justify-content: flex-start;
    text-align: left;
}


/*-----------------------------------------
 Next
-----------------------------------------*/

.vda-next-post a {
    justify-content: flex-end;
    text-align: right;
}


/*-----------------------------------------
 Hover
-----------------------------------------*/

.vda-post-navigation a:hover {
    color: #1f2937;

    background: #ffffff;

    border-color: #cbd5e1;

    transform: translateY(-2px);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .08);
}


/*-----------------------------------------
 Focus
-----------------------------------------*/

.vda-post-navigation a:focus-visible {
    outline: 3px solid rgba(13, 110, 253, .25);

    outline-offset: 2px;
}


/*=========================================
 MOBILE
=========================================*/

@media (max-width: 767px) {

    .vda-post-navigation {
        grid-template-columns: 1fr;

        gap: 10px;

        margin: 25px 0;
    }

    .vda-post-navigation a {
        min-height: 56px;

        padding: 12px 14px;

        font-size: 13px;
    }

    .vda-next-post a {
        justify-content: flex-start;
        text-align: left;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-post-navigation {
        margin: 20px 0;
    }

    .vda-post-navigation a {
        min-height: 52px;

        padding: 11px 12px;

        font-size: 12px;

        border-radius: 10px;
    }

}

/*==================================================
 VasuDigi Theme
 Floating WhatsApp Button
==================================================*/

.vda-floating-whatsapp {
    position: fixed;

    right: 20px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border: 3px solid #ffffff;
    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .22);

    z-index: 9998;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/*-----------------------------------------
 WhatsApp SVG Icon
-----------------------------------------*/

.vda-floating-whatsapp-icon {
    width: 31px;
    height: 31px;

    display: block;

    fill: currentColor;

    pointer-events: none;
}


/*-----------------------------------------
 Hover
-----------------------------------------*/

.vda-floating-whatsapp:hover {
    color: #ffffff;

    transform: scale(1.08);

    box-shadow:
        0 7px 22px rgba(0, 0, 0, .28);
}


/*-----------------------------------------
 Focus
-----------------------------------------*/

.vda-floating-whatsapp:focus-visible {
    outline: 3px solid rgba(37, 211, 102, .45);

    outline-offset: 4px;
}


/*=========================================
 MOBILE
=========================================*/

@media (max-width: 767px) {

    .vda-floating-whatsapp {
        right: 16px;
        bottom: 18px;

        width: 54px;
        height: 54px;
    }

    .vda-floating-whatsapp-icon {
        width: 29px;
        height: 29px;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-floating-whatsapp {
        right: 13px;
        bottom: 15px;

        width: 50px;
        height: 50px;
    }

    .vda-floating-whatsapp-icon {
        width: 27px;
        height: 27px;
    }

}

/*==================================================
 VasuDigi Theme
 Mobile Submenu Toggle
==================================================*/

@media (max-width: 767px) {

    /*-----------------------------------------
     Parent Menu Item
    -----------------------------------------*/

    .vda-primary-menu > li.menu-item-has-children {
        position: relative;
    }


    /*-----------------------------------------
     Submenu Toggle Button
    -----------------------------------------*/

    .vda-submenu-toggle {
        position: absolute;

        top: 0;
        right: 4px;

        width: 46px;
        height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;

        border: 0;

        background: transparent;

        color: #ffffff;

        font-size: 18px;
        font-weight: 700;

        line-height: 1;

        cursor: pointer;

        z-index: 2;
    }


    /*-----------------------------------------
     Toggle Hover
    -----------------------------------------*/

    .vda-submenu-toggle:hover {
        background: rgba(255, 255, 255, .08);
    }


    /*-----------------------------------------
     Closed Submenu
    -----------------------------------------*/

    .vda-primary-menu .sub-menu {
        display: none;
    }


    /*-----------------------------------------
     Open Submenu
    -----------------------------------------*/

    .vda-primary-menu
    li.menu-item-has-children.vda-submenu-open
    > .sub-menu {

        display: block;
    }


    /*-----------------------------------------
     Arrow
    -----------------------------------------*/

    .vda-primary-menu
    li.menu-item-has-children
    > .vda-submenu-toggle {

        transform: rotate(0deg);

        transition:
            transform .2s ease;
    }


    .vda-primary-menu
    li.menu-item-has-children.vda-submenu-open
    > .vda-submenu-toggle {

        transform: rotate(180deg);
    }


    /*-----------------------------------------
     Submenu Links
    -----------------------------------------*/

    .vda-primary-menu .sub-menu a {
        min-height: 44px;

        padding: 10px 50px 10px 30px;

        box-sizing: border-box;

        color: #ffffff;

        font-size: 13px;
    }


    .vda-primary-menu .sub-menu a:hover {
        background: rgba(255, 255, 255, .08);

        color: #ffffff;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-submenu-toggle {
        width: 42px;
        height: 46px;

        font-size: 17px;
    }

    .vda-primary-menu .sub-menu a {
        padding-left: 26px;
        padding-right: 45px;

        font-size: 12px;
    }

}

/*==================================================
 VasuDigi Theme
 Mobile Parent Menu + Submenu Indicator
==================================================*/

@media (max-width: 767px) {

    /*-----------------------------------------
     Parent Item With Submenu
    -----------------------------------------*/

    .vda-primary-menu
    > li.menu-item-has-children
    > a {

        padding-right: 52px;

        cursor: default;
    }


    /*-----------------------------------------
     Submenu Parent Hover
    -----------------------------------------*/

    .vda-primary-menu
    > li.menu-item-has-children
    > a:hover {

        background: rgba(255, 255, 255, .06);

        color: #ffffff;
    }


    /*-----------------------------------------
     Keep Toggle Above Parent Link
    -----------------------------------------*/

    .vda-primary-menu
    > li.menu-item-has-children
    > .vda-submenu-toggle {

        z-index: 5;
    }


    /*-----------------------------------------
     Open Parent
    -----------------------------------------*/

    .vda-primary-menu
    > li.menu-item-has-children.vda-submenu-open
    > a {

        background: rgba(255, 255, 255, .08);

        color: #ffffff;
    }

}

/*==================================================
 VasuDigi Theme
 Mobile Menu Scroll Lock
==================================================*/

@media (max-width: 767px) {

    body.vda-mobile-menu-active {
        overflow: hidden;
    }

}

/*==================================================
 VasuDigi Theme
 Mobile Menu Internal Scroll
==================================================*/

@media (max-width: 767px) {

    .vda-primary-menu-wrapper {
        max-height: calc(100vh - 54px);

        overflow-y: auto;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;

        box-sizing: border-box;
    }


    .vda-primary-menu {
        padding-bottom: 15px;
    }

}


/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width: 380px) {

    .vda-primary-menu-wrapper {
        max-height: calc(100vh - 50px);
    }

}

/*==================================================
 VasuDigi Theme
 Mobile Submenu Visual Transition
==================================================*/

@media (max-width: 767px) {

    .vda-primary-menu
    li.menu-item-has-children
    > .sub-menu {

        overflow: hidden;
    }


    .vda-primary-menu
    li.menu-item-has-children
    > .vda-submenu-toggle {

        -webkit-tap-highlight-color: transparent;
    }

}

/*==================================================
 VasuDigi Theme
 Header SVG Icon Alignment
==================================================*/

.vda-home-icon,
.vda-menu-icon,
.vda-search-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    line-height: 0;

    flex-shrink: 0;
}


.vda-home-icon svg,
.vda-menu-icon svg,
.vda-search-icon svg {
    display: block;

    width: 20px;
    height: 20px;

    flex-shrink: 0;
}


/*-----------------------------------------
 Mobile
-----------------------------------------*/

@media (max-width: 767px) {

    .vda-home-icon svg,
    .vda-menu-icon svg,
    .vda-search-icon svg {
        width: 20px;
        height: 20px;
    }

}


/*-----------------------------------------
 Small Mobile
-----------------------------------------*/

@media (max-width: 380px) {

    .vda-home-icon svg,
    .vda-menu-icon svg,
    .vda-search-icon svg {
        width: 19px;
        height: 19px;
    }

}

/*==================================================
 VasuDigi Theme
 Page Template
==================================================*/

/*-----------------------------------------------
 Page Article
-----------------------------------------------*/

.vda-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}


/*-----------------------------------------------
 Page Header
-----------------------------------------------*/

.vda-page-header {
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}


/*-----------------------------------------------
 Page Title
-----------------------------------------------*/

.vda-page-title {
    margin: 0;
    padding: 0 0 12px;

    color: #173b70;

    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;

    border-bottom: 2px solid #0d6efd;
}


/*-----------------------------------------------
 Featured Image
-----------------------------------------------*/

.vda-page-featured-image {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;

    overflow: hidden;
    border-radius: 12px;
}


.vda-page-featured-image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 0;
}


/*-----------------------------------------------
 Page Content
-----------------------------------------------*/

.vda-page-content {
    width: 100%;
    max-width: 100%;

    color: #263442;

    font-size: 16px;
    line-height: 1.8;
}


/*-----------------------------------------------
 Page Content Paragraph
-----------------------------------------------*/

.vda-page-content p {
    margin: 0 0 18px;
}


/*-----------------------------------------------
 Page Content Headings
-----------------------------------------------*/

.vda-page-content h2,
.vda-page-content h3,
.vda-page-content h4,
.vda-page-content h5,
.vda-page-content h6 {
    color: #173b70;
    line-height: 1.4;
}


.vda-page-content h2 {
    margin: 30px 0 15px;
    font-size: 27px;
}


.vda-page-content h3 {
    margin: 26px 0 13px;
    font-size: 23px;
}


.vda-page-content h4 {
    margin: 22px 0 12px;
    font-size: 20px;
}


/*-----------------------------------------------
 Page Content Links
-----------------------------------------------*/

.vda-page-content a {
    color: #0d6efd;
    text-decoration: underline;
}


.vda-page-content a:hover {
    color: #0b5ed7;
}


/*-----------------------------------------------
 Page Content Lists
-----------------------------------------------*/

.vda-page-content ul,
.vda-page-content ol {
    margin: 0 0 20px;
    padding-left: 25px;
}


.vda-page-content li {
    margin-bottom: 7px;
}


/*-----------------------------------------------
 Page Content Blockquote
-----------------------------------------------*/

.vda-page-content blockquote {
    margin: 25px 0;
    padding: 18px 20px;

    background: #f8fafc;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;

    color: #4d5968;
}


/*-----------------------------------------------
 Page Content Images
-----------------------------------------------*/

.vda-page-content img {
    max-width: 100%;
    height: auto;
}


/*-----------------------------------------------
 Page Content Tables
-----------------------------------------------*/

.vda-page-content table {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;

    border-collapse: collapse;
}


/*-----------------------------------------------
 Page Content Embeds
-----------------------------------------------*/

.vda-page-content iframe,
.vda-page-content video {
    max-width: 100%;
}


/*==================================================
 MOBILE
==================================================*/

@media (max-width: 767px) {

    .vda-page-header {
        margin-bottom: 20px;
    }


    .vda-page-title {
        font-size: 25px;
        line-height: 1.35;
        padding-bottom: 10px;
    }


    .vda-page-featured-image {
        margin-bottom: 22px;
        border-radius: 10px;
    }


    .vda-page-content {
        font-size: 15px;
        line-height: 1.75;
    }


    .vda-page-content h2 {
        margin-top: 25px;
        font-size: 23px;
    }


    .vda-page-content h3 {
        margin-top: 22px;
        font-size: 20px;
    }


    .vda-page-content h4 {
        font-size: 18px;
    }


    .vda-page-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

}


/*==================================================
 SMALL MOBILE
==================================================*/

@media (max-width: 380px) {

    .vda-page-title {
        font-size: 22px;
    }


    .vda-page-content {
        font-size: 14px;
    }


    .vda-page-featured-image {
        border-radius: 8px;
    }

}

/*==================================================
 VasuDigi Theme
 Archive Template
==================================================*/

/*-----------------------------------------------
 Archive Header
-----------------------------------------------*/

.vda-archive-header {
    width: 100%;
    margin: 0 0 24px;
    padding: 0;
}


/*-----------------------------------------------
 Archive Title
-----------------------------------------------*/

.vda-archive-title {
    margin: 0 0 10px;
    padding: 0;

    color: #173b70;

    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
}


/*-----------------------------------------------
 Archive Description
-----------------------------------------------*/

.vda-archive-description {
    margin: 0;

    color: #667384;

    font-size: 15px;
    line-height: 1.7;
}

.vda-archive-description p {
    margin: 0 0 10px;
}


/*-----------------------------------------------
 Archive Posts
-----------------------------------------------*/

.vda-archive-posts {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 18px;
}


/*-----------------------------------------------
 Archive Card
-----------------------------------------------*/

.vda-archive-card {
    width: 100%;
    margin: 0;
    padding: 0;

    display: flex;

    background: #ffffff;

    border: 1px solid #e5eaf0;
    border-radius: 12px;

    overflow: hidden;
    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.vda-archive-card:hover {
    transform: translateY(-2px);

    border-color: #d6e0eb;

    box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}


/*-----------------------------------------------
 Archive Thumbnail
-----------------------------------------------*/

.vda-archive-thumbnail {
    flex: 0 0 220px;

    width: 220px;
    min-height: 150px;

    display: block;

    background: #f3f6f9;

    overflow: hidden;
}


.vda-archive-thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 150px;

    object-fit: cover;

    transition: transform .3s ease;
}


.vda-archive-card:hover .vda-archive-thumbnail img {
    transform: scale(1.03);
}


/*-----------------------------------------------
 Archive Card Content
-----------------------------------------------*/

.vda-archive-card-content {
    flex: 1;

    min-width: 0;

    padding: 20px 22px;

    box-sizing: border-box;
}


/*-----------------------------------------------
 Archive Card Title
-----------------------------------------------*/

.vda-archive-card-title {
    margin: 0 0 7px;

    color: #173b70;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 750;
}


.vda-archive-card-title a {
    color: inherit;
    text-decoration: none;
}


.vda-archive-card-title a:hover {
    color: #0d6efd;
}


/*-----------------------------------------------
 Archive Card Meta
-----------------------------------------------*/

.vda-archive-card-meta {
    margin: 0 0 10px;

    color: #7a8796;

    font-size: 13px;
    line-height: 1.4;
}


/*-----------------------------------------------
 Archive Card Excerpt
-----------------------------------------------*/

.vda-archive-card-excerpt {
    margin: 0;

    color: #4d5968;

    font-size: 15px;
    line-height: 1.65;
}


.vda-archive-card-excerpt p {
    margin: 0;
}


/*-----------------------------------------------
 Read More
-----------------------------------------------*/

.vda-archive-read-more {
    display: inline-block;

    margin-top: 12px;

    color: #0d6efd;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}


.vda-archive-read-more:hover {
    color: #0b5ed7;
    text-decoration: underline;
}


/*-----------------------------------------------
 Archive Pagination
-----------------------------------------------*/

.vda-archive-pagination {
    width: 100%;
    margin-top: 28px;
}


.vda-archive-pagination .navigation.pagination {
    margin: 0;
}


.vda-archive-pagination .nav-links {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;
}


.vda-archive-pagination .page-numbers {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 40px;
    min-height: 40px;

    padding: 0 12px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dfe5ec;
    border-radius: 8px;

    color: #334155;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}


.vda-archive-pagination .page-numbers:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}


.vda-archive-pagination .page-numbers.current {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}


/*-----------------------------------------------
 Empty Archive
-----------------------------------------------*/

.vda-archive-empty {
    width: 100%;

    padding: 35px 25px;

    background: #ffffff;

    border: 1px solid #e5eaf0;
    border-radius: 12px;

    box-sizing: border-box;

    text-align: center;
}


.vda-archive-empty h1 {
    margin: 0 0 10px;

    color: #173b70;

    font-size: 25px;
    line-height: 1.4;
}


.vda-archive-empty p {
    margin: 0;

    color: #667384;

    font-size: 15px;
    line-height: 1.6;
}


/*==================================================
 TABLET
==================================================*/

@media (max-width: 1024px) {

    .vda-archive-thumbnail {
        flex: 0 0 190px;
        width: 190px;
    }

    .vda-archive-card-content {
        padding: 18px 20px;
    }

}


/*==================================================
 MOBILE
==================================================*/

@media (max-width: 767px) {

    .vda-archive-header {
        margin-bottom: 20px;
    }


    .vda-archive-title {
        font-size: 24px;
    }


    .vda-archive-description {
        font-size: 14px;
    }


    .vda-archive-card {
        display: flex;
        flex-direction: column;
    }


    .vda-archive-thumbnail {
        flex: none;

        width: 100%;
        height: auto;

        min-height: 0;

        aspect-ratio: 16 / 9;
    }


    .vda-archive-thumbnail img {
        width: 100%;
        height: 100%;

        min-height: 0;
    }


    .vda-archive-card-content {
        width: 100%;

        padding: 17px 18px;
    }


    .vda-archive-card-title {
        font-size: 19px;
    }


    .vda-archive-card-excerpt {
        font-size: 14px;
        line-height: 1.6;
    }


    .vda-archive-pagination {
        margin-top: 24px;
    }

}


/*==================================================
 SMALL MOBILE
==================================================*/

@media (max-width: 380px) {

    .vda-archive-title {
        font-size: 22px;
    }


    .vda-archive-card-content {
        padding: 15px;
    }


    .vda-archive-card-title {
        font-size: 18px;
    }


    .vda-archive-card-meta {
        font-size: 12px;
    }


    .vda-archive-card-excerpt {
        font-size: 13px;
    }


    .vda-archive-pagination .page-numbers {
        min-width: 36px;
        min-height: 36px;

        padding: 0 9px;
    }

}

/*==================================================
 VasuDigi Theme
 Final Mobile Width Correction
==================================================*/

@media (max-width: 767px) {

    /* Main site area */
    .vda-site-main {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Main layout */
    .vda-content-layout {
        width: 100%;
        max-width: 100%;
        gap: 20px;
    }

    /* Main column */
    .vda-main-column {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /* Sidebar */
    .vda-sidebar {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /* Sidebar widgets */
    .vda-sidebar .widget {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}


/*==================================================
 Small Mobile
==================================================*/

@media (max-width: 380px) {

    .vda-site-main {
        padding-left: 8px;
        padding-right: 8px;
    }

}

/*==================================================
 VasuDigi Theme
 Final Content + Sidebar Layout
==================================================*/

/*-----------------------------------------
 Desktop
-----------------------------------------*/

@media (min-width: 1025px) {

    .vda-site-main {
        width: 100%;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .vda-content-layout {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 30px;
        align-items: start;
    }

    .vda-main-column {
        width: 100%;
        min-width: 0;
    }

    .vda-sidebar {
        width: 320px;
        max-width: 320px;
        min-width: 0;
        position: sticky;
        top: 90px;
    }

}


/*-----------------------------------------
 Tablet
-----------------------------------------*/

@media (min-width: 768px) and (max-width: 1024px) {

    .vda-site-main {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .vda-content-layout {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 22px;
    }

    .vda-main-column {
        width: 100%;
        min-width: 0;
    }

    .vda-sidebar {
        width: 280px;
        max-width: 280px;
        min-width: 0;
        position: sticky;
        top: 90px;
    }

}


/*-----------------------------------------
 Mobile
-----------------------------------------*/

@media (max-width: 767px) {

    .vda-site-main {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 12px;
    }

    .vda-content-layout {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .vda-main-column {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .vda-sidebar {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        position: static;
    }

    .vda-sidebar .widget {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}
/*-----------------------------------------
 Small Mobile
-----------------------------------------*/

@media (max-width: 380px) {

    .vda-site-main {
        padding-left: 10px;
        padding-right: 10px;
    }

    .vda-sidebar .widget {
        padding-left: 14px;
        padding-right: 14px;
    }

}
