/*================================================
   Basic Common Style
==================================================*/
html {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}
/*------- colors -------*/
:root {
    --yellow: #ffc107;
    --black: #000000;
    --white: #ffffff;
}
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--black);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}
dfn,
cite,
em,
i {
    font-style: italic;
}
blockquote {
    margin: 0 1.5em;
}
address {
    margin: 0 0 1.5em;
}
pre {
    background: var(--white);
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}
abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}
mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}
big {
    font-size: 125%;
}
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}
ul,
ol {
    margin: 0 0 1.5em 3em;
}
ul {
    list-style: disc;
}
ol {
    list-style: decimal;
}
li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}
dt {
    font-weight: 700;
}
dd {
    margin: 0 1.5em 1.5em;
}
embed,
iframe,
object {
    max-width: 100%;
}
img {
    height: auto;
    max-width: 100%;
}
figure {
    margin: 1em 0;
}
table {
    margin: 0 0 1.5em;
    table-layout: fixed;
    width: 100%;
}
a {
    color: var(--yellow);
}
a:visited {
    color: var(--yellow);
}
a:hover,
a:focus,
a:active {
    color: var(--black);
}
a:focus {
    outline: thin dotted;
}
a:hover,
a:active {
    outline: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}
select {
    border: 1px solid #ccc;
}
textarea {
    width: 100%;
    min-height: 120px;
    padding-top: 15px;
}
a:active,
a:focus,
a:hover {
    color: var(--yellow);
}
a:focus,
button:focus,
button:hover,
input:focus,
input:hover,
textarea:focus,
textarea:hover {
    outline: thin dotted;
}
a,
a:focus,
a:hover,
button:focus,
button:hover,
input:focus,
input:hover,
textarea:focus,
textarea:hover {
    color: var(--black);
}
/*================================================
   Accessible Inline Links
==================================================*/
/* ===== 1. Skip Link (Keyboard Accessible) ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--yellow);
    color: var(--black);
    padding: 10px 15px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.skip-link:focus {
    top: 10px;
}
/* ===== Screen Reader Text (for accessibility) ===== */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.screen-reader-text:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
.entry-content a,
.comment-content a,
.textwidget a,
.single-widget a {
    color: var(--yellow);
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.entry-content a:hover,
.entry-content a:focus,
.comment-content a:hover,
.comment-content a:focus,
.textwidget a:hover,
.textwidget a:focus,
.single-widget a:hover,
.single-widget a:focus {
    color: var(--yellow);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
}
.main-navigation a,
.menu a,
.btn a,
button a {
    text-decoration: none;
}
main#primary-content {
    outline: none;
}

/* ========================================================
   Keyboard Navigation Enhancements
======================================================== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}
.main-navigation a:focus,
.menu a:focus {
    color: var(--yellow);
}
button:focus,
.btn:focus,
input[type="submit"]:focus {
    background-color: var(--yellow);            
    color: var(--black);
    border-color: var(--black);
}
.main-navigation .dropdown-menu a:focus {
    background-color: var(--yellow);
    color: var(--black);
}

/*================================================
   Footer
==================================================*/
.footer-copy-right {
    position: relative;
    background: var(--black);
    padding: 20px 0;
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    clear: both;
    display: block;
    width: 100%;
}
.footer-copy-right a {
    color: var(--white);
    text-decoration: none;
}
.footer-copy-right a:hover {
    text-decoration: underline;
}
.site-info p {
    margin: 0;
    font-size: 20px;
}
.site-info a {
    text-decoration: none;
    color: var(--white) !important;
}
.site-info a:hover {
    text-decoration: underline;
}
.entry-content::after,
.site-content::after,
.content-area::after {
    content: "";
    display: table;
    clear: both;
}
/*================================================
   Header Style
==================================================*/
.soldsteps-navbar {
    background-color: var(--white);
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.soldsteps-navbar .site-title a {
    text-decoration: none;
    color: inherit;
}

.soldsteps-navbar .site-title {
    font-size: 30px;
    margin: 0;
}

/*================================================
   Main Navigation
==================================================*/
.main-navigation .navbar-nav {
    margin: 0;
    padding: 0;
}
.main-navigation .navbar-nav li {
    list-style: none;
    display: inline-block;
    position: relative;
}
.main-navigation .navbar-nav li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 10px 15px;
    transition: color 0.3s ease;
}
.main-navigation .navbar-nav li a:hover,
.main-navigation .navbar-nav li.current-menu-item>a,
.main-navigation .navbar-nav li a:focus {
    color: var(--black);
}
/*================================================
   Submenus – ALL LEVELS (Keyboard Accessible)
==================================================*/
.main-navigation .navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 180px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* 🔑 IMPORTANT FIX:
   Show submenu when parent receives keyboard focus */
.main-navigation .navbar-nav li:hover>.sub-menu,
.main-navigation .navbar-nav li:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
}
/* Submenu links */
.main-navigation .navbar-nav .sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
}
.main-navigation .navbar-nav .sub-menu li a:hover,
.main-navigation .navbar-nav .sub-menu li a:focus {
    background: var(--yellow);
    color: var(--white);
}
/*================================================
   Nested Submenus (2nd, 3rd, 10th… unlimited)
==================================================*/
.main-navigation .navbar-nav .sub-menu .sub-menu {
    top: 43px;
    left: 20%;
    opacity: 0;
    visibility: hidden;
}
/* Show nested submenu on hover OR keyboard focus */
.main-navigation .navbar-nav .sub-menu li:hover>.sub-menu,
.main-navigation .navbar-nav .sub-menu li:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
}
header.entry-header span a {
    color: #555;
    font-weight: 400;
}
@media (max-width: 767px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    button.navbar-toggler {
        margin-top: -60px;
    }
    .soldsteps-navbar .site-title {
        margin-top: 10px;
    }
    button.navbar-toggler {
        border: none;
        outline: none;
        box-shadow: none;
        color: #fff;
    }
    button.navbar-toggler:focus,
    button.navbar-toggler.collapsed:focus {
        border: none;
        outline: none;
        box-shadow: none;
        color: #fff;
    }
}

/* =========================
   Mobile Navigation Fix
========================= */
@media (max-width: 768px) {
    .main-navigation .navbar-nav li {
        display: block;
        margin: 0;
        position: relative;
    }
    /* Mobile submenus */
    .main-navigation .navbar-nav .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    /* Show submenu on hover OR keyboard focus */
    .main-navigation .navbar-nav li:hover>.sub-menu,
    .main-navigation .navbar-nav li:focus-within>.sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        /* allows deep levels */
    }
    /* Nested submenus */
    .main-navigation .navbar-nav .sub-menu .sub-menu {
        margin-left: 0px;
    }
}


/* ==========================================================
   Font Styles
========================================================== */
@font-face {
    font-family: 'Nunito';
    src: url("../font-family/Nunito-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url("../font-family/Nunito-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}


/*================================================
   Breadcrumb Style
==================================================*/
section.breadcrumb-section {
    background: #2d2e30;
    padding-top: 65px;
    padding-bottom: 80px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}
h1.breadcrumb-title {
    font-weight: 700;
    font-size: 45px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 0;
}
.breadcrumb-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    display: block;
}
nav.breadcrumb-trail a {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--white);
    text-decoration: none;
}
nav.breadcrumb-trail {
    color: var(--white);
    padding-top: 10px;
}
.breadcrumb-content p {
    color: var(--white);
}
/*================================================
   Comments Style
==================================================*/
.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.comment-notes {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
.comment-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.comment-form input,
.comment-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 3px;
    background: var(--white);
    transition: border-color 0.3s;
}
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--yellow);
    outline: none;
}
.comment-form textarea {
    grid-column: span 2;
    min-height: 150px;
    resize: vertical;
}
.comment-form-cookies-consent {
    grid-column: span 2;
    font-size: 14px;
}
.comment-form .form-submit {
    grid-column: span 2;
}
.comment-form .form-submit input[type="submit"] {
    background: var(--yellow);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.3s;
}
.comment-form .form-submit input[type="submit"]:hover {
    background: var(--yellow);
}
ol.comment-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.comment-author.vcard a {
    color: var(--black);
}
.comment-metadata a {
    color: var(--black);
}
.comment-content a {
    color: var(--black);
}
.comment-reply-link {
    background: var(--yellow);
    color: var(--white);
    padding: 2px 18px;
    display: inline-block;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none !important;
}
.comment-respond {
    margin-top: 50px;
    position: relative;
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
}
/*================================================
    Style
==================================================*/
.soldsteps-post-content {
    border: 1px solid #ebeced;
    padding: 30px 30px 20px;
    border-radius: 0 0 10px 10px;
    margin-top: 25px;
    transition: 0.6s;
}
.soldsteps-post-content:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 50px 30px -40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 50px 30px -40px rgba(0, 0, 0, 0.1);
}
.blog-details {
    padding: 80px 0px;
}
h2.entry-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
.entry-meta {
    margin-bottom: 15px;
}
span.posted-on {
    color: #555;
    font-weight: 400;
}
.entry-meta,
.entry-meta a {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    text-decoration: none;
}
.entry-meta span {
    margin-right: 15px;
}
.entry-title a {
    color: var(--yellow);
    text-decoration: none;
}
.entry-header,
.entry-title,
.entry-title a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    display: block;
    max-width: 100%;
}
.entry-title a {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.read-more-btn .btn {
    border-radius: 25px;
    padding: 6px 20px;
    font-weight: 500;
    border-color: var(--yellow);
    color: var(--yellow);
}
.read-more-btn .btn:hover {
    background: var(--yellow);
    color: var(--white);
}
.read-more-btn .btn:focus,
.read-more-btn .btn:active {
    outline: 2px solid #fff;
    outline-offset: 2px;
    color: #fff;
    background-color: var(--yellow);
    border-color: var(--yellow);
}

/*================================================
   Sidebar Style
==================================================*/
.widget-area {
    margin: 25px 0;
    padding: 15px 20px;
    border: 1px solid #eaeaea;
}
.single-widget {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.single-widget-title {
    font-size: 32px;
    margin-bottom: 15px;
}
.single-widget .wp-block-search__input,
.single-widget input[type="search"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.single-widget .wp-block-search__button,
.single-widget .searchsubmit {
    background: var(--yellow);
    border: none;
    color: var(--white);
    padding: 0 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.single-widget .wp-block-search__button:hover,
.single-widget .searchsubmit:hover {
    background: var(--yellow);
}
.single-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.single-widget ul li {
    margin-bottom: 8px;
    font-size: 15px;
}
.single-widget ul li a {
    text-decoration: none;
    color: var(--black);
}
.single-widget ul li a:hover {
    color: var(--yellow);
}
.single-widget ol {
    box-sizing: border-box;
    margin-left: 0;
    padding-left: 0;
}
.single-widget .wp-block-latest-comments li a {
    color: var(--black);
    text-decoration: none;
}
.single-widget .wp-block-search .wp-block-search__label {
    font-weight: 400;
    margin-bottom: 15px;
}
.single-widget:last-child {
    border: none;
    margin: 0;
}
.single-widget .single-widget-title,
.single-widget_block .wp-block-heading {
    position: relative;
    font-size: 20px;
    line-height: 1.25em;
    margin-bottom: 25px;
    letter-spacing: -0.2px;
    font-weight: 700;
    color: var(--black);
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 10px;
}
.single-widget ul,
.single-widget ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.single-widget ul li {
    margin-bottom: 15px;
}
.single-widget ul li:last-child {
    margin: 0;
}
.single-widget ul ul ul {
    padding-left: 5px;
}
.single-widget ul,
.single-widget ul li a {
    color: var(--black);
    text-decoration: none;
}
.single-widget ul li a:hover {
    color: var(--yellow);
}
/* .single-widget ul li a:focus,
.single-widget ul li a:active {
    color: var(--yellow);
} */
.single-widget select {
    width: 100%;
    height: 45px;
    padding: 0 20px;
    background: #f6f9fc;
}
.single-widget .search-form .search-submit {
    background: var(--yellow);
    border: none;
    color: var(--white);
    padding: 16px;
    border-radius: 4px;
    cursor: pointer;
}
.single-widget .tagcloud a {
    text-decoration: none;
    color: #555;
    font-size: 14px !important;
    display: inline-block;
    padding: 5px 15px;
    background: var(--white);
    margin-top: 5px;
}
.single-widget .tagcloud a:hover {
    background: var(--yellow);
    color: var(--white);
}
.is-style-fancy-quote {
    border-left: 4px solid var(--yellow);
    padding-left: 1rem;
    font-style: italic;
    color: #444;
}
.post-tags {
    margin: 20px 0;
    font-size: 14px;
}
.post-tags .tag-links a {
    display: inline-block;
    margin-right: 6px;
    padding: 4px 10px;
    background: #f4f4f4;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}
.post-tags .tag-links a:hover {
    background: var(--yellow);
    color: var(--white);
}

/*================================================
   Accessibility & Utilities Style
==================================================*/
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}
/*================================================
   Alignments Style
==================================================*/
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}
/*================================================
   Widget Calender Style
==================================================*/
#calendar_wrap th,
#calendar_wrap td {
    padding: 5px 10px;
    text-align: center;
    border: 1px solid #ebebeb;
    color: var(--yellow);
    background: var(--white);
}
#calendar_wrap #wp-calendar {
    max-width: 100%;
}
#calendar_wrap #wp-calendar thead th,
#calendar_wrap #wp-calendar tfoot td {
    background: #f5f8f9;
    color: var(--yellow);
    font-size: 15px;
}
#calendar_wrap #wp-calendar caption {
    caption-side: top;
    background: var(--yellow);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 15px;
}
#calendar_wrap #wp-calendar tbody tr a {
    color: var(--white);
    border-radius: 100%;
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    padding: 0;
    background: var(--yellow);
    padding: 0;
    text-align: center;
}
#calendar_wrap #wp-calendar tfoot td {
    background: var(--white);
}
#calendar_wrap #wp-calendar tfoot tr a {
    color: var(--yellow);
}
#calendar_wrap #wp-calendar tfoot tr a:hover {
    color: var(--yellow);
}
/*================================================
    Post Counter Style
==================================================*/
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 25px;
    gap: 40px;
}
.nav-previous a,
.nav-next a {
    text-decoration: none;
    background: var(--yellow);
    padding: 10px 15px;
    color: var(--white);
    font-size: 18px;
    border: 1px solid transparent;
}
.nav-previous a:hover,
.nav-next a:hover {
    background: var(--white);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

/*================================================
    Fixing Issue Style
==================================================*/
.content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
}
@media (min-width: 768px) {
    .content-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}











