/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #1b365d;
    --secondary-color: #ff6b35;
    --text-dark: #1e1e1e;
    --text-light: #595959;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #dadada;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;

    background-color: var(--white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

.top-button {
    right: unset;
    left: 1%;
    width: 50px;
    padding: 0 !important;
}
.fs_14{
    font-size: 14px;
}
.container {
    width: 100%;
    max-width: 1230px;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.text-center {
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px;
}

.section-title .highlight {
    color: var(--secondary-color);
}
.light_bg{
    background-color: var(--background-light) !important;
}
.section-subtitle {
    color: var(--text-light);

    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 64px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.btn-primary,
.contact-form .form-group .btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid #ffa888;
    padding: 10px 32px;
}

.btn-primary:hover,
.contact-form .form-group .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-tertiary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
}

.btn-tertiary img {
    margin-right: 8px;
}

.text_blue{
    color: var(--primary-color) !important;
}
/* CSS from section:header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    padding: 10px 20px !important;

    color: #111111;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-actions a {
    padding: 10px 10px;
}
.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}


.contact-btn:hover,
.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-btn:hover img,
.btn-tertiary:hover img {
    filter: invert(1) brightness(100);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}



/* CSS from section:hero */
.hero-section {
    padding: 120px 0 220px;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.hero-subtitle {

    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    max-width: 720px;
}

.hero-section .btn-primary {
    padding: 18px 32px;
}

.hero-section .btn-tertiary {
    padding: 20px 32px;
}

.hero-trust-badge {
    background-color: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 1000px;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(1px);
    align-self: flex-start;
}

.avatar-stack {
    position: relative;
    width: 104px;
    height: 40px;
}

.avatar-stack img {
    width: 104px;
    height: 40px;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-text p {
    margin: 0;

}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating span {

    margin-left: 4px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-availability {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-style: italic;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 1000px;
    padding: 8px;
    padding-right: 24px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.floating-cta a:hover {
    transform: scale(1.05);
}

.floating-cta .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 2px solid #ffa888;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-cta .icon-wrapper img {
    width: 24px;
    height: 24px;
}

.floating-cta .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-cta .cta-title {

    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.floating-cta .cta-subtitle {

    color: var(--text-light);
    margin: 0;
}



/*
=============================
 CSS from section:features 
 ============================
*/
.features-section {
    margin-top: -80px;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid #dddddd;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0px 3px 7px 0px #9C9C9C1A, 0px 13px 13px 0px #9C9C9C17, 0px 29px 17px 0px #9C9C9C0D, 0px 51px 20px 0px #9C9C9C03, 0px 80px 22px 0px #9C9C9C00;
}

.feature-icon {
    background-color: rgba(16, 185, 129, 0.12);
    border-radius: 12px;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}
.feature-icon i {
    color: #10b981;
    font-size: 20px;
}
.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 18px 0;
}

.feature-description {

    color: var(--text-light);
    margin: 0;
}
.feature-description a {
    font-weight: 600;
    color: var(--secondary-color);
}

/*
=============================
CSS from section:services
 ============================
*/

.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid #dddddd;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.service-price {

    color: var(--text-dark);
    margin: 0px 0 0 0;
}

.price-highlight {
    font-weight: 600;
    color: #10B981;
}

.service-description {

    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 5px 0;
    flex-grow: 1;
}

.service-link {

    font-weight: 700;
    color: var(--secondary-color);
}

/*
=============================
CSS from section:why-us 
 ============================
*/

.why-us-section {
    background-color: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.why-us-content .section-subtitle {
    max-width: 100%;
    margin: 0;
}

.why-us-content .section-subtitle p:last-child {
    margin-bottom: 0;
}

.why-us-images {
    position: relative;
    height: 450px;
    max-width: 568px;
}

.why-us-images .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    object-fit: cover;
}

.why-us-images .secondary-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 280px;
    border-radius: 12px;
    border: 8px solid var(--white);
    object-fit: cover;
}

.why-us-images .decorative-svg {
    position: absolute;
    top: 0;
    right: 10px;
    width: 125px;
    height: 125px;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 600;
    color: var(--primary-color);
}


/*
=============================
CSS from section:testimonials
 ============================
*/

.testimonials-section {
    background-color: var(--white);
}

.testimonials-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 64px;
}

.testimonials-summary .rating {
    display: flex;
    align-items: center;
    gap: 4px;
}


.testimonials-summary .rating span {

    color: var(--text-dark);
}

.testimonials-summary p {

    color: var(--text-dark);
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid #dddddd;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
}

.testimonial-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-icon img {
    width: 32px !important;
    height: 32px !important;
}

.testimonial-card blockquote {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {

    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.author-title {

    color: var(--text-light);
    margin: 0;
}

/*
=============================
CSS from section:gallery
 ============================
*/
.gallery-section {
    background-color: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
}

.gallery-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3px 10px;
    font-weight: 700;
}

.before-tag {
    left: 16px;
    color: var(--primary-color);
}

.after-tag {
    left: calc(50% + 16px);
    color: var(--secondary-color);
}

.gallery-cta {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.gallery-cta p {
    max-width: 500px;
    margin: 0;

    color: var(--text-light);
    line-height: 1.5;
}




/*
=============================
CSS from section:team
 ============================
*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    background-image: url('/page/ac07058d-931f-40ca-be0c-04725dd1628e/images/fcd6e65cdc3fb356c020c48276ed9e3a448e68fd.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    height: 433px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.team-info {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.team-title {

    font-weight: 600;
    color: var(--text-dark);
    margin: -8px 0 0 0;
}

.team-experience {

    color: var(--text-dark);
    margin: 0;
}

/*
=============================
CSS from section:contact
 ============================
*/

.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-col, .contact-form-col {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    background: #fff;
}

.zip-checker {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zip-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.zip-form {
    display: flex;
    background-color: var(--background-light);
    border-radius: 12px;
    padding: 12px;
}

.zip-form input {
    flex-grow: 1;
    border: none;
    background: transparent;

    padding: 0 12px;
}

.zip-form input:focus {
    outline: none;
}

.map-image iframe {
    width: 100%;
    border-radius: 12px;
    height: 175px;
    object-fit: cover;
}

.zip-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.zip-result p {
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;

}

.form-group input,
.form-group textarea {
    background-color: var(--background-light);
    border: none;
    border-radius: 12px;
    padding: 16px;

    font-family: 'DM Sans', sans-serif;
    width: 100%;
    max-height: 128px;
}

.form-group.submit_btn {
    position: relative;
}

.form-group.submit_btn span.wpcf7-spinner {
    position: absolute;
    right: 0;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);

    margin-top: 8px;
}

.contact-cards-section {
    margin-top: 120px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.contact-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: rgba(16, 185, 129, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.contact-card a,
.contact-card span {

    font-weight: 600;
    color: var(--secondary-color);
    margin-top: -12px;
}

.contact-card p {

    color: var(--text-light);
    margin: 0;
}

/*
=============================
CSS from section:blog
 ============================
*/
.blog-section {
    background-color: var(--background-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid #dddddd;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 15px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    min-height: 52px;
}

.blog-excerpt {

    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.blog-date {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.blog-link {

    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 10px;
}


/*
=============================
CSS from section:footer
 ============================
*/
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.footer-main {
    display: flex;
    gap: 20px;
    padding-bottom: 64px;
    justify-content: space-between;
}

.footer-main .footer-about {
    max-width: 271px;
}

.footer-about .logo {
    color: var(--white);
    margin-bottom: 32px;
}

.footer-about p {

    line-height: 1.5;
    margin: 0 0 32px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 32px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-links a,
.footer-contact li {

    color: var(--white);
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact a {
    text-decoration: underline;
}

.footer-contact span {
    font-weight: 700;
}

.footer-divider {
    border: none;
    border-top: 1px solid #6086bc;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;

}

.footer-bottom p {
    margin: 0;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-links a:hover {
    text-decoration: underline;
}

.legal-links .separator {
    width: 4px;
    height: 4px;
    background-color: var(--white);
    border-radius: 50%;
}

/*
=============================
Inner Banner Styles
 ============================
*/

.inner_banner.hero-section {
    padding: 70px 0;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_banner.hero-section .hero-content {gap: 20px;}

.inner_banner.hero-section .hero-actions {
    gap: 0;
    margin-top: 30px !important;
}
.padd_section {
    padding: 100px 0;
}


/*
=============================
Single Service Styles
 ============================
*/
.service_counter {
    background-color: var(--background-light);
}
.counter-box {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 5px solid #ff6b35;
}

.counter-box h2 {
    font-weight: bold;
    margin-bottom: 0;
}
.counter-box .hd_title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box .hd_title span {
    font-size: 25px;
    margin-left: 10px;
}
.counter-box p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.counter-box:hover {
  transform: translateY(-5px);
}
.service_main_content_data a {
    color: var(--secondary-color);
}

.service_main_content_data ul, .service_main_content_data ol {
    padding-left: 0px !important;
    list-style: none;
}

.service_main_content_data ul li, .service_main_content_data ol li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    font-size: 20px;
    font-weight: bold;
  background-color: #fff;
  color: #333;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button:hover {
  color: #fff;
  background-color: var(--secondary-color); 
}

.accordion-button:hover::after {
  filter: brightness(0) invert(1); 
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--secondary-color); 
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.service_boxes .img_wrap h4 {
    color: var(--primary-color) !important;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    padding: 10px 30px 30px 30px;
}
.service_boxes .img_wrap img {
    margin-bottom: 1rem;
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
}
.service_main_content_data .content {
    padding: 30px 0;
}
.service_boxes  .service_box {
    background: #fff;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 10px #eeeeee;
    transition: 0.3s;
}
.service_boxes .service_box:hover {
    box-shadow: 0 10px 10px #e3e3e3;
}
.service_main_content_data  .img_wrap img {
    min-height: 520px;
    object-fit: cover;
}
.service_main_content_data {
    padding: 70px 0;
}
.cta_section .section-subtitle {
    margin-bottom: 30px;
}

/*
=============================
Service Category Styles
 ============================
*/

.service_cat .card {
    box-shadow: 0px 3px 7px 0px #9C9C9C1A, 0px 13px 13px 0px #9C9C9C17, 0px 29px 17px 0px #9C9C9C0D, 0px 51px 20px 0px #9C9C9C03, 0px 80px 22px 0px #9C9C9C00;
    border: 0;
    transition: 0.3s;
}

.service_cat .card:hover {
    box-shadow: 0 10px 20px #cecece;
}

.service_cat .wp-post-image {
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}
/*
=============================
Blog Css
 ============================
*/
.pagination-wrapper ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 8px;
}

.pagination-wrapper ul li {
  margin: 0;
}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
  display: block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-wrapper ul li a:hover {
  background-color: #ff6600; /* Replace with your brand color */
  color: #fff;
  border-color: #ff6600;
}

.pagination-wrapper ul li span.current {
  background-color: #ff6600;
  color: #fff;
  border-color: #ff6600;
}

.wp_sidebar .wp-block-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.wp_sidebar li.list-group-item {
    border: 0;
    border-bottom: 1px solid #ddd;
    padding-left: 0;
    background: no-repeat !important;
    border-radius: 0;
}
.wp_sidebar ul.bs-list-group {
    padding-left: 0;
}

.wp_sidebar li.list-group-item a:hover {
    color: #ff6b35;
    background: no-repeat !important;
}

button.wp-block-search__button:hover {
    background: #ff6b35;
#fff:;
    border-color: transparent;
}

button.wp-block-search__button {
    color: #1b365d;
}
.list-group-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.single-post h2, .single-post h3, .single-post h4, .single-post h5, .single-post h6 {
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}


.single-post ul {
    padding-left: 15px;
}

.single-post ul li {
    margin-bottom: 7px;
}


/*
=============================
About Styles
 ============================
*/

.side_icon_wrap  li {
    background-color: var(--white);
    border: 1px solid #dddddd;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    display: flex;
    box-shadow: 0px 3px 7px 0px #9C9C9C1A, 0px 13px 13px 0px #9C9C9C17, 0px 29px 17px 0px #9C9C9C0D, 0px 51px 20px 0px #9C9C9C03, 0px 80px 22px 0px #9C9C9C00;
    margin: 1rem 0;
}

.side_icon_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.side_icon_wrap li .img_wrap {
    width: 60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    background-color: rgba(16, 185, 129, 0.12);
    border-radius: 12px;
}

.side_icon_wrap li .content {
    flex: 1;
}

.side_icon_wrap li .img_wrap i {
    color: #10b981;
    font-size: 20px;
}
.side_icon_wrap li .content h3, .side_icon_wrap li .content h4 {
    color: var(--primary-color);
    font-weight: 600;
}
.exp_module .number {
    font-weight: bold;
    font-size: 80px;
    line-height: 1;
    color: #ff6b35;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
}

.exp_module {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

p:empty {
    display: none;
}

.exp_module .content p:last-child {
    margin-bottom: 0;
}

.abt_below_banner {
    padding: 50px 0;
}

.exp_module .content {
    font-weight: 600;
}
.about_trust .counter-box .hd_title span {
    font-size: 40px;
    color: var(--primary-color);
    padding: 20px;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px #ff57222b;
}

.about_trust .counter-box p {
    font-weight: bold;
}

/*
=============================
Location Styles
 ============================
*/

.location_below_banner .img_wrap img {
    min-height: unset;
}
.location_cta .section-title {
    color: #fff;
}

.location_cta .section-subtitle {
    color: #fff;
}

.location_cta .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.location_cta .btn-secondary:hover {
    background: #fff;
    color: #000;
}


/*
=============================
Career Styles
 ============================
*/
.career_main {
    padding: 60px 0;
}

.career-card h5 {
    font-weight: 600;
    color: #222;
}

.career-card ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

.modal-title {
    font-weight: 600;
}

.career-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.career-pagination ul {
    justify-content: center;
    gap: 8px;
}

.career-pagination .page-numbers {
    display: flex;
    padding: 8px 12px;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    list-style: none;
}

.career-pagination .current {
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
}

.career-description ul, .career-description ol {
    list-style: none;
    padding: 0;
    display: flex;
    font-weight: 500;
}

.career-description ul li, .career-description ol li {
    background: #ededed;
    padding: 5px 10px;
    margin: 3px 5px 3px 0;
    color: #000;
    border-radius: 5px;
}
.career_main button.btn-close {
    background-color: #e3e3e3;
    border-radius: 50%;
    opacity: 1;
    background-size: 10px;
}

/*
=============================
Service Styles
 ============================
*/

.ss_areas {
    background: linear-gradient(135deg, #ffffff, #d9e8ff);
}
.ss_areas .inner_wrap {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px #afccf1;
}
.ss_areas .inner_wrap li {
    border-bottom: 1px solid #d7e6ff;
    padding-bottom: 10px;
}
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-block {
    flex: 0 1 45%;
    margin-bottom: 40px;
}

.service-category-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #003366;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    margin-bottom: 10px;
}

.service-item a {
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.service-item a:hover {
    text-decoration: underline;
}

.ss_areas .inner_wrap .arrow {
    margin-left: 8px;
    font-weight: bold;
}

.ss_areas .inner_wrap ul {
    padding-right: 30px;
}

.ss_areas h5 {
    color: var(--primary-color);
}
.ss_areas .inner_wrap li a {
    font-weight: 500;
}

.ss_areas .inner_wrap li a:hover {
    color: var(--secondary-color);
}

/*
=============================
Certification Styles
 ============================
*/

.image_grid img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    padding: 10px;
    width: 100%;
}


/*
=============================
Responsive Styles
 ============================
*/
@media (max-width: 1199px) {

    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-nav-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
    }

    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    header .navbar > .container {
        justify-content: flex-start;
    }
    header .navbar-brand {
        margin-right: auto;
    }
    .main-nav ul {
        align-items: unset;
    }
    .main-nav a {
        padding: 10px 20px 10px 0px !important;
        font-size: 20px;
    }
    .main-nav ul li {
        border-bottom: 1px solid #ddd;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        min-height: auto;
    }
    .footer-main {
        display: grid;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer {
        font-size: 14px;
        padding: 64px 0;
    }

    .footer-links h4, .footer-contact h4 {
        font-size: 18px;
        margin: 0 0 24px;
    }

    .footer-links ul, .footer-contact ul {
        gap: 15px;
    }
}


@media (max-width: 767px) {
    body{
        font-size: 14px;
    }
    h1, .hero-title {
        font-size: 32px;
    }
    .section-title, h2, .h2 {
        font-size: 24px;
    }
    h3, .h3 {
        font-size: 18px !important;
    }
    .btn {
        font-size: 14px;
    }
    .section-subtitle {
        margin-bottom: 30px;
    }
    .section-padding, .padd_section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    header .navbar-brand {
        max-width: 151px;
    }
    header button.nav-toggler {
        background-color: var(--secondary-color);
        color: #000000;
        border: 2px solid #ffa888;
        padding: 10px 5px;
        width: 48px;
        font-size: 17px;
    }

    .header-actions .contact-btn.btn img {
        display: none;
    }
    .header-actions .contact-btn {
        padding: 10px;
    }

    .services-section .btn, .team-section .btn {
        margin-top: 30px !important;
    }
    .contact-info-col, .contact-form-col {
        padding: 20px;
    }
    .contact-cards-grid {
        margin-top: 30px;
    }
    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 64px 0 142px 0;
    }

    .hero-section .btn-primary {
        padding: 19.5px 23px;
    }
    .hero-section .btn-tertiary {
        padding: 20px 22px;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }

    .hero-content {
        gap: 24px;
    }
    .hero-trust-badge {
        padding: 5px 12px;
    }
    .trust-text {
        gap: 2px;
    }
    .service-content {
        padding: 20px;
        gap: 10px;
    }
    .gallery-item {
        height: 175px;
    }

    .feature-icon {
        margin-bottom: 24px;
    }

    .floating-cta {
        display: none;
    }
    .contact-cards-grid {
        margin-top: 30px;
    }

    .contact-card a, .contact-card span {
        margin: 0;
    }

    .contact-card {
        gap: 10px;
        padding: 20px;
    }

    .contact-icon {
        margin-bottom: 15px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        align-items: center;
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .footer-links h4, .footer-contact h4 {
        margin: 20px 0 10px;
    }
    .site-footer {
        padding: 64px 0 30px;
    }

    .testimonials-section button.owl-prev, .testimonials-section button.owl-next,
    .blog-section button.owl-prev, .blog-section button.owl-next {
        background: #ffffff url(/wp-content/uploads/2025/06/Vector-2.png) no-repeat scroll center !important;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid #ddd !important;
        font-size: 0 !important;
    }

    .testimonials-section button.owl-prev,
    .blog-section button.owl-prev {
        transform: rotate(180deg);
    }

    .testimonials-section button:hover,
    .blog-section button:hover {
        background-color: #ddd !important;
    }

    .testimonials-section .owl-nav,
    .blog-section .owl-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }
    .testimonials-section .testimonial-counter,
    .blog-section .blog-counter {
        margin-top: -30px;
        color: #595959;
    }

    .inner_banner.hero-section {
        min-height: 300px;
        padding: 64px 0;
    }
}

@media (max-width: 575px) {
    .hero-title {
        max-width: 350px;
    }
    .why-us-images {
        height: 300px;
    }

    .why-us-images .main-image {
        width: 80%;
        height: auto;
    }

    .why-us-images .secondary-image {
        width: 50%;
        height: auto;
    }
    .cta_button a {
        width: 100%;
        margin: 10px 0 !important;
    }
	.side_icon_wrap {
		grid-template-columns: 1fr;
		grid-gap: 10px;
	}
}