/* ========================================
   GLOBAL RESET
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: inherit;
    overflow-x: hidden;
}

/* ========================================
   LINKS
======================================== */
a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:focus {
    text-decoration: none;
}

/* ========================================
   IMAGES
======================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   LISTS
======================================== */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ========================================
   HEADINGS & PARAGRAPHS
======================================== */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

/* ========================================
   BUTTONS
======================================== */
button,
.btn {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
.btn:focus {
    box-shadow: none !important;
}

/* ========================================
   FORMS
======================================== */
input,
textarea,
select {
    outline: none;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: inherit;
}

/* ========================================
   IFRAME & VIDEO
======================================== */
iframe,
video {
    max-width: 100%;
    display: block;
}

/* ========================================
   WORDPRESS
======================================== */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* ========================================
   BOOTSTRAP OVERRIDES
======================================== */
.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* ========================================
   SECTION SPACING
======================================== */
section {
    position: relative;
}

/* ========================================
   FIX OVERFLOW ISSUES
======================================== */
body,
html {
    overflow-x: hidden;
}

.category-section,
.selectStateCitiesBx,
.selectServiceByIndustryBx,
.selectLocationsByIndustryBx,
.locations-section {
    padding: 70px 0px;
}
.sectionIntro {
    margin-bottom: 26px;
}
.sectionIntro h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 9px;
}
.sectionIntro h2:after {
    background: #13287e;
    height: 2px;
    width: 49%;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
}
.locations-section {
    
    background: #f1f1f1;
}
.stateAreasBx {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 17px;
}
.statesNameBx {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #13287e;
}


/*-----------start Single listing detail page css--------------------*/
.single-hero {
    position: relative;
    margin-bottom: 60px;
}

.single-hero-image img {
    width: 100%;
    object-fit: cover;
}

.single-hero-content {
    margin: -120px auto 0;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.single-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0;
}

.post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
}

.single-post-section {
    padding-bottom: 80px;
}

.single-content {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

.single-content h2,
.single-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.single-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 25px 0;
}

.single-content p {
    margin-bottom: 24px;
}

.single-sidebar {
    position: sticky;
    top: 100px;
}

.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

.post-navigation a {
    text-decoration: none;
    font-weight: 600;
}

.post-tags {
    margin-top: 40px;
}

.post-tags a {
    display: inline-block;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 30px;
    margin: 5px;
    text-decoration: none;
}

@media(max-width:991px){

    .single-hero-image img{
        /*height:350px; */
    }

    .single-hero-content{
        margin-top:-60px;
        padding:25px;
    }

    .single-hero-content h1{
        font-size:32px;
    }

}
/*-----------End Single listing detail page css--------------------*/