/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.9
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.site-header {
    background: unset !important;
}
/* CSS Variables Start */
:root {
    --primary-color: #022552;
    --secondary-color: #F0F2F5;
    --tertiary-color: #2DA743;
    --bg-light: #ffffff;
    --text-dark: #212529;
    --text-light: #ffffff;
    --card-border-radius: 1.5rem;
    --button-border-radius: 0.75rem;
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --divider-color: #e0e0e0;
    --dark-divider-color: #FFFFFF1A;
    --accent-color: var(--primary-color);
    --button-gradient-start: #ff69b4;
    --button-gradient-end: #ffa07a;
    --button-main-color: #E9AB24;
    --dark-color-bg: var(--primary-color);
}

/* CSS Variables End */

/* Global Styles Start */
body {
    font-family: 'Onest', sans-serif !important;
    background-color: var(--bg-light);
    padding: 0;
    margin: 0;
    position: relative;
}

.container-custom {
    background-color: #36363624;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    padding: 3rem;
    margin: 0 auto;
    width: 95%;
    max-width: 1300px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}
section.how-it-work.bg-section.dark-section h4 {
    font-size: 44px;
}
.entry-content div#wpcf7-f2805-p14-o1 label {
    color: #fff;
}
section.why-choose-us p.text-animer-style-1 {
    font-size: 40px !important;
    font-weight: 600;
    line-height: 50px !important;
    color: #000 !important;
    margin: 10px 0 0 0 !important;
}
section.why-choose-us p.text-animer-style-1 span {
    font-size: 40px !important;
    font-weight: 600;
}
figure {
    margin: 0;
}
div#content iframe {
    width: 100%;
    height: auto;
}
img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}
section.our-faqs h5 {
    color: #000 !important;
}
.faqs-contact-box span {
    color: #fff;
}
.cta-contact-item b {
    color: #fff !important;
}
section.our-appointment h6 {
    font-size: 30px;
}
section.our-blog h6 {
    font-size: 43px;
}
a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}


.section-title {
    margin-bottom: 40px;
    text-align: left;
}

.section-title sapn {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tertiary-color);
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 10px;
}
.section-title h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
    color: var(--text-dark);
}
.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--tertiary-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.section-title h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
    color: var(--text-dark);
}

.section-title h2 span {
    color: var(--tertiary-color);
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--text-light);
    border: none;
    padding: 17px 54px 17px 30px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
}

.btn-default::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 18px;
    color: var(--text-light);
    transform: translateY(-50%) rotate(-45deg);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(0deg);
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--button-main-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    width: 120%;
}

.btn-default.btn-highlighted {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-default.btn-highlighted::before {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--text-light);
}

.btn-default.btn-highlighted:hover::before {
    color: var(--text-light);
}

/* Image Reveal Container Start */
.reveal {
    opacity: 0;
    overflow: hidden;
}

.reveal img {
    transform: scale(1.2);
}
header.site-header {
    border: 1px solid #d3d3d3 !important;
}
/* Image Reveal Container End */

/* Universal Figure Shimmer Effect Start */
figure {
    position: relative;
    overflow: hidden;
}

figure::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}
p {
    font-size: 0.95rem !important;
    line-height: 30px !important;
}
figure:hover::after {
    height: 250%;
    background-color: transparent;
}

/* Universal Figure Shimmer Effect End */

/* Marquee Section */
.marquee-section {
    background: linear-gradient(to right, #2DA743, #4f97f7);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 2rem;
    display: flex;
    align-items: center;
}

.marquee-item i {
    color: var(--text-dark);
    font-size: 1rem;
    margin-right: 0.75rem;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* About Us Section Start */
.about-us {
    padding: 100px 0;
}

.about-us .container-custom {
    border-radius: unset;
    box-shadow: none;
    padding: 0;
    background-color: unset;
}

.about-us-images {
    position: relative;
    padding: 0 70px 70px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-us-img-1 {
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.about-us-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
    border-radius: var(--card-border-radius);
}

.about-us-img-2 {
    position: absolute;
    bottom: 0;
    right: 35px;
    border-radius: 20px;
    width: 50%;
    max-width: 200px;
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.about-us-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
    border-radius: 20px;
}

.about-experience-box {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(70%);
    background: linear-gradient(to right, #2DA743, #4f97f7);
    border-radius: 10px;
    padding: 20px;
    max-width: 178px;
    animation: experiencemoveobject 2s infinite linear alternate;
    box-shadow: var(--shadow-light);
    z-index: 3;
}

@keyframes experiencemoveobject {
    50% {
        left: 30px;
    }
}

.about-experience-box .icon-box {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 40px;
}

.about-experience-box .about-experience-content span {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-list-btn {
    width: calc(100% - 220px);
}

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

.about-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #495057;
    font-size: 0.95rem;
}

.about-list ul li:last-child {
    margin-bottom: 0;
}

.about-list ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
}

.about-btn .btn-default {
    margin-top: 20px;
}

.book-consult-circle {
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
}

.book-consult-circle a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    box-shadow: var(--shadow-medium);
    animation: rotateCircle 10s linear infinite;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
}

.book-consult-circle a i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* About Us Section End */

/* Our Services Section Start */
.our-services {
    padding: 0;
}

.our-services .container-custom {
    background-position: center center !important;
    background-size: cover !important;
}

.service-item {
    position: relative;
    background: var(--bg-light);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
    transform: translate(100%, -100%);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item.active .service-image,
.service-item:hover .service-image {
    opacity: 1;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #525a51;
    opacity: 0.8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.service-body {
    position: relative;
    z-index: 2;
}

.service-body .icon-box {
    margin-bottom: 50px;
}

.service-body .icon-box img {
    width: 100%;
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-body .icon-box img,
.service-item:hover .service-body .icon-box img {
    filter: brightness(0) invert(1);
}

.service-content {
    transform: translateY(55px);
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-content,
.service-item:hover .service-content {
    transform: translateY(0px);
}

.service-content-info h3 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
    color: var(--text-dark);
}

.service-content-info a {
    color: inherit;
    text-decoration: none;
}

.service-content-info p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
    color: #6c757d;
}

.service-item.active .service-content p,
.service-item:hover .service-content p,
.service-item.active .service-content h3,
.service-item:hover .service-content h3 {
    color: var(--text-light);
}

.service-readmore-btn {
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-readmore-btn,
.service-item:hover .service-readmore-btn {
    opacity: 1;
    visibility: visible;
}

.service-readmore-btn a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tertiary-color);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

.service-readmore-btn a:hover {
    color: var(--accent-color);
    background: var(--bg-light);
}

.service-readmore-btn a i {
    font-size: 20px;
    color: inherit;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.service-readmore-btn a:hover i {
    transform: rotate(0);
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.section-footer-text span {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text-light);
    background: var(--accent-color);
    padding: 3px 10px;
    border-radius: 100px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

/* Our Services Section End */

/* Our Commitment Section Start */
.our-commitment {
    padding: 100px 0;
}

.our-commitment .container-custom {
    border-radius: unset;
    box-shadow: none;
    padding: 0;
    background-color: unset !important;
}

.our-commitment-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-commitment-content,
.our-commitment-image {
    height: 100%;
}

.our-commitment-image {
    align-items: flex-end;
    margin: 0 52px;
}

.our-commitment-image figure {
    display: block;
    width: 100%;
    overflow: unset !important;
}

.our-commitment-image img {
    width: 100%;
    object-fit: cover;
    margin-bottom: -100px;
}

.commitment-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.commitment-list ul li {
    position: relative;
    width: calc(50% - 15px);
    line-height: 1.5em;
    padding-left: 30px;
}

.commitment-list ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
}

.commitment-item-list {
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.commitment-item-list h3 {
    position: relative;
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 30px;
    color: var(--text-dark);
}
.our-commitment-content h3 {
    font-size: 35px;
}
h3.anning {
    font-size: 17px;
    margin: 0 0 11px 0;
    color: #55a550;
}
.our-commitment-content h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--tertiary-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}
.our-commitment-content span {
    color: #000;
    font-weight: 700;
}
.commitment-item-list h3::before {
    position: absolute;
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
}

.commitment-item-list p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.commitment-btn {
    margin-top: 30px;
}
.container-fluid.dark-section {
    padding: 50px;
}
.footer-copyright-text a {
    color: #000;
}
/* Our Commitment Section End */

/* How It Works Section Start */
.how-it-work {
    max-width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 99;
    background-color: #03142b !important;
}
.footer-copyright-text a:hover {
    color: #55a550;
    text-decoration: none;
}
.how-it-work span {
    background-color: unset;
    box-shadow: none;
    padding: 0;
}

.dark-section {
    background-color: var(--primary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h2,
.dark-section .section-title h1,.dark-section .section-title h4,
.dark-section .work-step-item h3,
.dark-section .work-step-item h2,
.dark-section .work-step-item p {
    color: var(--text-light);
}
.section-title span {
    color: #55a550;
}
h4.text-anime-style-1 {
    color: #fff;
}

.dark-section .section-title h3 {
    color: var(--tertiary-color);
}

.dark-section .section-title h3::before {
    background: var(--text-light);
}

.dark-section .section-title h2 span {
    color: var(--text-light);
}

.section-row {
    margin-bottom: 80px;
}

.work-step-nav {
    margin-bottom: 60px;
}

.work-step-nav .nav-tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    border: none;
}

.work-step-nav ul li {
    width: calc(33.33% - 20px);
}

.work-step-nav ul li .nav-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--dark-divider-color);
    border: none;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 25px;
    border-radius: 20px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.work-step-nav ul li .nav-link.active,
.work-step-nav ul li .nav-link:hover {
    background: var(--tertiary-color);
    color: var(--text-light);
}

.work-step-nav ul li .nav-link i {
    font-size: 30px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.work-step-nav ul li .nav-link.active i,
.work-step-nav ul li .nav-link:hover i {
    filter: brightness(0) invert(1);
}

.work-step-content {
    padding-left: 50px;
}

.work-step-item {
    position: relative;
    margin-bottom: 40px;
}

.work-step-item::before {
    position: absolute;
    content: '\f192';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    left: -33px;
    top: 15px;
    font-size: 18px;
    color: var(--tertiary-color);
    z-index: 1;
}

.work-step-item h3 {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 10px;
}

.work-step-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.work-step-item p {
    margin-bottom: 0;
}

.work-step-item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-25px, 55px);
    border-left: 1px solid var(--tertiary-color);
    width: 1px;
    height: calc(100% + 25px);
}

.work-step-item:last-child::after {
    display: none;
}

.work-step-item:last-child {
    margin-bottom: 0;
    display: block !important;
    font-weight: 600;
    font-size: 25px;
}
.work-step-item span {
    color: #fff !important;
	display: block !important;
    font-weight: 600;
    font-size: 25px;
}
span.dixing {
    color: #55a550 !important;
}

.work-step-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.work-step-image img {
    width: 100%;
    aspect-ratio: 1 / 0.646;
    object-fit: cover;
    border-radius: 20px;
}

.work-step-btn {
    margin-top: 30px;
}

/* How It Works Section End */

/* Why Choose Us Section Start */
.why-choose-us {
    padding: 100px 0;
}

.why-choose-us .container-custom {
    background-color: unset;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-box {
    width: calc(33.33% - 20px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-box:nth-child(3n + 2) {
    flex-direction: column-reverse;
}

.why-choose-image,
.why-choose-item {
    width: 100%;
}

.why-choose-image figure {
    display: block;
    border-radius: 20px;
}

.why-choose-image img {
    width: 100%;
    aspect-ratio: 1 / 0.944;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-item {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item {
    background-color: var(--tertiary-color);
}

.why-choose-box:nth-child(3n + 3) .why-choose-item {
    background-color: var(--primary-color);
}

.why-choose-item b.unlimited {
    font-size: 31px;
    margin-bottom: 20px;
    color: #ffffff;
    display: block;
}
b.unlimited span {
    font-size: 30px !important;
}
.section-title h5 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}
.testimonial-author span {
    color: #fff;
}
.why-choose-item span {
    font-size: 25px;
    margin-bottom: 20px;
    color: #ffffff;
}
.why-choose-item span {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-choose-item p {
    margin-bottom: 0;
    color: #6c757d;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item h2,
.why-choose-box:nth-child(3n + 3) .why-choose-item h2,
.why-choose-box:nth-child(3n + 2) .why-choose-item h3,
.why-choose-box:nth-child(3n + 3) .why-choose-item h3,
.why-choose-box:nth-child(3n + 2) .why-choose-item p,
.why-choose-box:nth-child(3n + 3) .why-choose-item p {
    color: var(--text-light);
}

.why-choose-btn {
    margin-top: 30px;
}

.why-choose-btn .btn-default {
    width: 100%;
    text-align: center;
    padding: 17px;
}

.why-choose-btn .btn-default::before {
    display: none;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item .why-choose-btn .btn-default {
    background: var(--primary-color);
    color: var(--bg-light);
}

.why-choose-box:nth-child(3n + 3) .why-choose-item .why-choose-btn .btn-default {
    background: var(--tertiary-color);
}

/* Why Choose Us Section End */

/* Our Testimonials Section Start */
.our-testimonials {
    padding: 100px 0;
}

.our-testimonials .container-custom {
    background-repeat: no-repeat;
    background-size: cover;
}

.review-image-box {
    background: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    padding: 30px;
}

.review-box {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 20px;
    padding-right: 20px;
}

.review-icon img {
    width: 100%;
    max-width: 50px;
}

.review-content p {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: var(--text-light);
    margin-bottom: 5px;
}

.review-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.review-content ul li {
    display: inline-block;
    line-height: normal;
    color: var(--text-light);
    margin-right: 2px;
}

.review-content ul li i {
    font-size: 10px;
    color: var(--text-light);
}

.customer-images {
    display: inline-flex;
    align-items: center;
}

.customer-img {
    position: relative;
    display: inline-block;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -20px;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.customer-img:first-child {
    margin: 0;
}

.customer-img figure {
    display: block;
    width: 100%;
    height: 100%;
}

.customer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.customer-img.add-more {
    background-color: var(--bg-light);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slider .swiper-wrapper {
    cursor: grab;
}

.testimonial-slider .swiper-wrapper:active {
    cursor: grabbing;
}

.testimonial-item {
    position: relative;
    background: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    padding: 40px 35px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--tertiary-color);
    transition: all 0.5s ease-in-out;
    height: 100%;
    z-index: 0;
}

.testimonial-slider .swiper-slide-active .testimonial-item::before {
    top: 0;
}

.testimonial-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    margin-right: 15px;
}

.author-image figure {
    display: block;
    border-radius: 10px;
}

.author-image img {
    width: 100%;
    max-width: 60px;
    border-radius: 10px;
}

.author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--text-light);
    margin-bottom: 2px;
}

.author-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-quote img {
    width: 100%;
    max-width: 30px;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
}

.testimonial-slider .swiper-slide-active .testimonial-item .testimonial-content {
    border-color: var(--dark-divider-color);
}

.testimonial-slider .testimonial-pagination {
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 6px;
    width: 6px;
    background: var(--dark-divider-color);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--text-light);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
    border: 1px solid var(--text-light);
    height: 14px;
    width: 14px;
}

/* Our Testimonials Section End */

/* Our FAQs Section Start */
.our-faqs {
    position: relative;
    /* padding: 100px 0; */
    z-index: 1;
}

.our-faqs .container-custom {
    background-color: unset;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
}

.faqs-content {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.faqs-contact-box {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.faqs-contact-box-title {
    background: var(--tertiary-color);
    text-align: center;
    padding: 15px 30px;
}

.faqs-contact-box-title h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 0;
}

.faqs-contact-item-box {
    background: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    padding: 20px;
}


.cta-contact-item {
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 40px;
    padding-right: 40px;
}

.cta-contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cta-contact-header i {
    font-size: 24px;
    color: var(--text-light);
    margin-right: 10px;
}

.cta-contact-item:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.cta-contact-header h3 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-contact-item-content p a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-contact-item-content p a:hover {
    opacity: 0.8;
}

.accordion-item {
    background: var(--bg-light);
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.111em;
    background: var(--tertiary-color);
    color: var(--text-light);
    padding: 20px 45px 20px 20px;
    transition: all 0.3s ease-in-out;
}

.accordion-header .accordion-button.collapsed {
    color: var(--primary-color);
    background: transparent;
    border-radius: 10px;
}

.accordion-item .accordion-button::after {
    content: '\2b';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    font-size: 18px;
    background-image: none;
    line-height: normal;
    color: var(--text-light);
    transition: all 0.4s ease-in-out;
}

.accordion-item .accordion-button.collapsed::after {
    transform: translateY(-50%) rotate(0deg);
    color: var(--primary-color);
}

.accordion-item .accordion-body {
    background: var(--tertiary-color);
    border-top: 1px solid var(--divider-color);
    padding: 20px;
}

.accordion-item .accordion-body p {
    color: var(--text-light);
    margin: 0;
}

/* Our FAQs Section End */

/* Our Blog Section Start */
.our-blog {
    padding: 0 0 40px 0;
}

.our-blog .container-custom {
    background-color: unset;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    background-color: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
    margin: 0;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.695;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-body {
    margin: 0 15px;
    padding-bottom: 15px;
}

.post-item-content {
    margin-bottom: 15px;
}
.post-item-content span a {
    color: #000;
}
.post-item-content span {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 0;
    color: var(--text-dark);
}

.post-item-content h2 a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-item-content h2 a:hover {
    color: var(--primary-color);
}

.post-item-btn {
    margin-top: 15px;
}

.readmore-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.readmore-btn::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.readmore-btn:hover {
    color: #5a0a99;
}

.readmore-btn:hover::after {
    transform: translateX(5px);
}

/* Our Blog Section End */

/* Our Appointment Section Start */
.our-appointment {
    padding: 100px 0;
}

.our-appointment .container-custom {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: unset;
    box-shadow: none;
}

.appointment-form form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-dark);
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 17px 20px;
    border: none;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder {
    text-transform: capitalize;
    color: var(--text-dark);
}

.appointment-form form .form-group select {
    padding: 16px 30px 16px 20px;
}

.appointment-form form .form-group select option {
    color: var(--primary-color);
}

.appointment-form .contact-form-btn {
    margin-top: 20px;
}

.our-appointment-image {
    position: relative;
    border-radius: 20px;
    margin-left: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.our-appointment-image figure {
    display: block;
    margin: 0;
}

.our-appointment-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(123, 0, 211, 0) 37.07%, rgba(123, 0, 211, 0.8) 100%);
    width: 100%;
    height: 100%;
}

.our-appointment-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.967;
    object-fit: cover;
}

.open-time-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.open-time-box .icon-box {
    background: var(--bg-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.4s ease-in-out;
}

.our-appointment-image:hover .open-time-box .icon-box {
    background: var(--primary-color);
}

.open-time-box .icon-box i {
    font-size: 35px;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.our-appointment-image:hover .open-time-box .icon-box i {
    color: var(--text-light);
}

.open-time-box-content {
    width: calc(100% - 80px);
}

.open-time-box-content p {
    color: var(--text-light);
    margin-bottom: 2px;
    font-size: 1rem;
}

.open-time-box-content p:last-child {
    margin-bottom: 0;
}

/* Our Appointment Section End */

/* Main Footer Section Start */


.footer-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.footer-header .section-title {
    width: calc(70% - 15px);
    margin: 0;
}

.footer-header .section-title h2 {
    color: var(--text-light);
}

.footer-header .section-title p {
    color: var(--text-light);
}

.footer-header .book-consult-circle {
    width: calc(30% - 15px);
    text-align: right;
}

.about-footer {
    margin-right: 4.688vw;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 152px;
}

.about-footer-content {
    margin-bottom: 30px;
}

.about-footer-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.footer-social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 12px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    width: 38px;
    height: 38px;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-links span {
    font-size: 20px;
    color: var(--text-light);
    text-transform: capitalize;
    margin-bottom: 30px;
}
.footer-links span {
    margin: 0 0 16px 0 !important;
    display: inline-block;
    font-weight: 700;
}
.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    color: var(--text-light);
    text-transform: capitalize;
    line-height: 1.6em;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--tertiary-color);
}

.footer-newsletter-form .form-group {
    display: flex;
    background: var(--dark-divider-color);
    border-radius: 10px;
    padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
    width: 70%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-light);
}

.footer-newsletter-form .form-group .btn-default {
    width: 30%;
    padding: 17px 20px;
}

.footer-newsletter-form .form-group .btn-default::before {
    display: none;
}

.footer-privacy-policy ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-links.footer-privacy-policy ul li {
    position: relative;
    margin: 0;
}

/*.footer-privacy-policy ul li::before {
    content: '/';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -18px;
    font-size: 12px;
    color: var(--text-light);
}*/

.footer-privacy-policy ul li:last-child:before {
    display: none;
}

.footer-privacy-policy ul li a {
    color: inherit;
}

.footer-copyright-text {
    text-align: center;
    padding: 15px 0;
    color: var(--text-dark);
}

.footer-copyright-text p {
    margin-bottom: 0;
}

/* Main Footer Section End */

/* Media Queries Start */
@media (max-width: 1024px) {
    .container-custom {
        padding: 2rem;
    }

    .about-us-images {
        padding: 0 40px 40px 50px;
    }

    .about-experience-box {
        padding: 15px;
        max-width: 150px;
    }

    .about-experience-box .about-experience-content h3 {
        font-size: 18px;
    }

    .about-us-img-2 {
        right: 20px;
        width: 45%;
        max-width: 180px;
        border-width: 6px;
    }

    .book-consult-circle a {
        width: 120px;
        height: 120px;
        font-size: 0.8rem;
    }

    .book-consult-circle a i {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .service-item {
        padding: 20px;
        height: auto;
    }

    .service-body .icon-box {
        margin-bottom: 30px;
    }

    .service-body .icon-box img {
        max-width: 40px;
    }

    .service-content {
        transform: translateY(0);
    }

    .service-readmore-btn {
        opacity: 1;
        visibility: visible;
    }

    .our-commitment-image {
        margin: 0 30px;
    }

    .our-commitment-image img {
        margin-bottom: -70px;
    }

    .commitment-list ul li {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .commitment-list ul li:before {
        position: static;
        margin-right: 0.5rem;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .work-step-nav {
        margin-bottom: 40px;
    }

    .work-step-nav ul li .nav-link {
        padding: 15px;
        font-size: 16px;
    }

    .work-step-nav ul li .nav-link i {
        font-size: 25px;
    }

    .work-step-content {
        padding-left: 0;
    }

    .work-step-item::before {
        left: 0;
    }

    .work-step-item::after {
        left: 10px;
    }

    .why-choose-box {
        width: calc(50% - 15px);
    }

    .review-image-box {
        padding: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .review-box {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .customer-images {
        justify-content: center;
    }

    .faqs-content {
        position: static;
        margin-right: 0;
        margin-bottom: 3rem;
    }

    .faqs-contact-box {
        max-width: none;
    }

    .post-item-body {
        margin: 0 10px;
    }

    .our-appointment-image {
        margin-left: 0;
        margin-top: 30px;
    }

    .footer-header {
        flex-direction: column;
        text-align: center;
    }

    .footer-header .section-title {
        width: 100%;
    }

    .footer-header .book-consult-circle {
        width: auto;
        text-align: center;
    }

    .about-footer {
        margin-right: 0;
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-social-links ul {
        justify-content: left;
    }

    .footer-links {
        text-align: left;
        margin-bottom: 30px;
    }

    .footer-links h3 {
        text-align: left;
    }

    .footer-links ul {
        align-items: left;
        justify-content: left;
    }

    .footer-newsletter-form .form-group {
        flex-direction: column;
    }

    .footer-newsletter-form .form-group .form-control,
    .footer-newsletter-form .form-group .btn-default {
        width: 100%;
    }

    .footer-newsletter-form .form-group .btn-default {
        margin-top: 10px;
    }

    .footer-privacy-policy ul {
        justify-content: center;
    }

    .footer-privacy-policy ul li::before {
        display: none;
    }

    .marquee-section {
        padding: 15px 0 !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 20px 0 !important;
    }

    .container-custom {
        padding: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

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

    .section-title h3 {
        justify-content: center;
        padding-left: 0;
    }

    .section-title h3::before {
        display: none;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-content-btn .section-btn {
        text-align: center;
    }

    .about-us-images {
        padding: 0 20px 20px 30px;
        margin-bottom: 3rem;
    }

    .about-us-img-1 {
        max-width: none;
    }

    .about-experience-box {
        position: static;
        transform: none;
        margin: 1rem auto;
        max-width: 100%;
        text-align: center;
        animation: none;
    }

    .about-experience-box .icon-box {
        display: flex;
        justify-content: center;
    }

    .about-us-img-2 {
        bottom: -1.5rem;
        right: 50%;
        transform: translateX(50%);
        width: 45%;
        max-width: 180px;
        border-width: 5px;
    }

    .about-us-body {
        flex-direction: column;
        gap: 20px;
    }

    .about-list-btn {
        width: 100%;
    }

    .about-list ul li {
        justify-content: center;
        text-align: center;
        padding-left: 0;
    }

    .about-list ul li:before {
        position: static;
        margin-right: 0.5rem;
    }

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

    .book-consult-circle {
        position: static;
        margin: 2rem auto 0;
        width: fit-content;
    }

    .book-consult-circle a {
        width: 130px;
        height: 130px;
    }

    .our-services {
        padding: 60px 0;
    }

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

    .service-item:last-child {
        margin-bottom: 0;
    }

    .our-commitment-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .our-commitment-image {
        margin: 0;
        align-items: center;
    }

    .our-commitment-image img {
        margin-bottom: -50px;
    }

    .commitment-list ul li {
        justify-content: center;
    }

    .commitment-item-list h3 {
        padding-left: 0;
        text-align: center;
    }

    .commitment-item-list h3::before {
        position: static;
        margin-right: 0.5rem;
    }

    .commitment-item-list p {
        text-align: center;
    }

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

    .work-step-nav .nav-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .work-step-nav ul li {
        width: 100%;
    }

    .work-step-nav ul li .nav-link {
        flex-direction: row;
    }

    .work-step-nav ul li .nav-link i {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .work-step-item::before {
        left: -23px;
    }

    .work-step-item::after {
        /* left: 0; */
    }

    .faqs-contact-item-box {
        padding: 20px;
    }

    .cta-contact-item {
        margin-right: 0px;
        padding-right: 5px;
    }

    .cta-contact-item:last-child {
        padding: 0 0 0 15px;
    }

    .why-choose-box {
        width: 100%;
    }

    .review-image-box {
        padding: 15px;
    }

    .review-box {
        flex-direction: column;
        text-align: center;
    }

    .review-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .customer-img {
        width: 45px;
        height: 45px;
    }

    .customer-img.add-more {
        width: 45px;
        height: 45px;
    }

    .customer-img.add-more p {
        font-size: 16px;
    }

    .testimonial-item {
        padding: 30px 25px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
    }

    .author-image {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .author-image img {
        max-width: 50px;
    }

    .testimonial-quote {
        margin-top: 15px;
    }

    .faqs-contact-box-title h3 {
        font-size: 18px;
    }

    .cta-contact-header h3 {
        font-size: 16px;
    }

    .cta-contact-item-content p a {
        font-size: 14px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 15px 40px 15px 15px;
    }

    .faq-accordion .accordion-item .accordion-button::after {
        font-size: 16px;
        right: 15px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 15px;
    }

    .faq-accordion .accordion-item .accordion-body p {
        font-size: 0.9rem;
    }

    .post-item-body {
        margin: 0;
        padding: 0 10px 10px 10px;
    }

    .our-blog {
        padding: 0 !important;
    }

    .open-time-box {
        flex-direction: column;
        text-align: center;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .main-footer-box {
        padding: 20px 0 0;
    }

    .open-time-box .icon-box {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .open-time-box-content {
        width: 100%;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links.footer-privacy-policy ul {
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }

    .btn-default {
        padding: 15px 40px 15px 20px;
        font-size: 14px;
    }

    .btn-default::before {
        right: 20px;
        font-size: 16px;
    }

    .main-heading {
        font-size: 1.5rem;
    }

    .about-btn .btn-default {
        padding: 1rem 2.2rem;
        font-size: 0.9rem;
    }

    .service-item {
        padding: 15px;
    }

    .service-body .icon-box {
        margin-bottom: 30px;
    }

    .service-body .icon-box img {
        max-width: 35px;
    }

    .service-content-info h3 {
        font-size: 18px;
    }

    .section-footer-text p {
        font-size: 1rem;
    }

    .commitment-item-list h3 {
        font-size: 18px;
    }

    .commitment-item-list p {
        font-size: 0.9rem;
    }

    .work-step-nav ul li .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .work-step-nav ul li .nav-link i {
        font-size: 20px;
    }

    .work-step-item h3 {
        font-size: 14px;
    }

    .work-step-item h2 {
        font-size: 18px;
    }

    .work-step-item p {
        font-size: 0.9rem;
    }

    .footer-header .section-title h2 {
        font-size: 28px;
    }

    .footer-links h3 {
        font-size: 18px;
    }

    .footer-links ul li {
        font-size: 0.9rem;
    }

    .footer-newsletter-form .form-group .form-control {
        font-size: 14px;
    }

    .footer-newsletter-form .form-group .btn-default {
        font-size: 14px;
    }

    .footer-copyright-text p {
        font-size: 0.9rem;
    }
}

/* Media Queries End */

#sequence {
    width: 100%;
    float: left;
    background: #022552;
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: var(--text-light) !important;
    margin: 0 !important;
    box-shadow: var(--shadow-medium);
    padding: 20px 0 10px 0;
}
.contact-section {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border: 2px solid #007bff;
    border-radius: 6px;
    transition: 0.3s;
  }

  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: #c9262c;
    box-shadow: 0 0 10px rgba(201, 38, 44, 0.5);
    outline: none;
  }

  .contact-form button {
    background-color: #3b82f6;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    color: #fff;
    transition: 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #2563eb;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
  }

  .info-box {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
  }
.appointment-form {
    background: #1b3c50;
    padding: 20px 20px 0 20px;
    border-radius: 19px;
}
 .info-box i {
    font-size: 1.5rem;
    color: #55a456;
    margin-right: 15px;
}

  .info-box p {
    margin: 0;
    line-height: 1.5;
  }
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 0px 0;
    font-size: 16px;
    color: var(--text-light) !important;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid var(--dark-divider-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
#sequence a:last-child {
    border-right: none;
}

#sequence a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.animated-icon {
    font-size: 24px;
    margin-bottom: 5px;
    animation: bounce 2s infinite ease-in-out;
}

#callll .animated-icon {
    animation-delay: 0s;
}

#whatsappp .animated-icon {
    animation-delay: 0.2s;
}

.custom-primary .animated-icon {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.modal-content {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-dark);
    background-color: var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-close {
    color: var(--text-dark);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    color: var(--primary-color);
}

.modal-body {
    padding: 20px;
}

.custom-primary {
    background-color: var(--accent-color);
    color: var(--text-light) !important;
    border-radius: var(--button-border-radius);
    padding: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-primary:hover {
    background-color: darken(var(--accent-color), 10%);
    transform: translateY(-2px);
}

input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--divider-color);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input.wpcf7-form-control.wpcf7-text:focus,
textarea.wpcf7-form-control.wpcf7-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
    outline: none;
}

/* inner-pages css
 */

h1.inner-heading {
    color: #f153a7;
    font-weight: bold;
    font-size: 32px;
}
p.inner-text {
    color: #5b6873;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
}
h2.heading-content {
    font-size: 32px;
    font-weight: bold;
    color: #f153a7;
}
.card-body.text-center i {
    color: #182166;
    font-size: 68px;
}
.card {
    box-shadow: 30px 30px 30px rgb(44 44 44 / 8%);
	border:none;
}
span.inner-highlighted {
    color: #5b5a5a;
    font-size: 18px;
    font-weight: bold;
}
 .inner-icons i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 178, 216, 1) 0%, rgb(242 242 242) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.inner-icons i {
    font-size: 40px;
    color: #f153a7;
}
li.lead-text {
    font-size: 17px;
    font-weight: 600;
     color: #5b6873;
}
section.inner-pages {
    margin-top: 50px;
}
@media(max-width:767px){
section.inner-pages {
    margin-top: 15px;
}
span.breadcrumb-current {
    font-size: 22px !important;
}
	}
/* Breadcrumb css */
section.breadcrumb-section {
    position: relative;
    padding: 65px 0;
    background: linear-gradient(to right, #2DA743, #4f97f7);
    overflow: hidden;
    z-index: 1;
}
section#products h2 {
    text-align: center;
    margin: 0 0 29px 0;
}
section#products {
    margin: 50px 0 50px 0;
}
section.breadcrumb-section .breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 34 54 / 78%);
    z-index: -1;
}
section.breadcrumb-section .heading-text {
  position: relative;
  display: inline-block;
  animation: textReveal 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

section.breadcrumb-section .heading-underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ffa502);
  animation: underlineGrow 1.2s 0.5s ease-out forwards;
}

section.breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 1.1rem;
}
span.breadcrumb-current {
    color: #ffffff;
    font-size: 44px;
    font-weight: bolder;
}

section.breadcrumb-section .breadcrumb-item {
  position: relative;
  margin: 0 10px;
}


/* Archive Product Page Styling */
.wellistics-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-light);
}

.wellistics-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.wellistics-product-card .product-image-link {
    display: block;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.wellistics-product-card .wrapper-image,
.wellistics-product-card .product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease-in-out;
}

.wellistics-product-card .product-hover-image {
    opacity: 0;
}

.wellistics-product-card .product-image-link:hover .wrapper-image {
    opacity: 0;
}

.wellistics-product-card .product-image-link:hover .product-hover-image {
    opacity: 1;
}

.wellistics-product-card .card-body {
    padding: 1.5rem;
}

.wellistics-product-card .card-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.wellistics-btn-primary {
    background: var(--button-main-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--button-border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wellistics-btn-primary:hover {
    background: darken(var(--button-main-color), 10%);
    background: #d49a1f;
    color: var(--text-light);
    transform: translateY(-2px);
}

/* --- Single Product Page Enhancements --- */

.wellistics-single-product {
    background-color: var(--secondary-color); /* Light background for the section */
    padding: 80px 0; /* More vertical spacing */
}

.wellistics-single-product .container {
    background-color: var(--bg-light); /* White background for the content area */
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-medium);
    padding: 3rem; /* Inner padding */
}

@media (max-width: 767.98px) {
    .wellistics-single-product .container {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }
}

.wellistics-single-product .product-image-container {
    background-color: var(--bg-light);
    border: 1px solid var(--divider-color); /* Subtle border */
    padding: 1.5rem; /* Padding inside the image container */
    display: flex; /* For centering content */
    align-items: center; /* For centering content */
    justify-content: center; /* For centering content */
}

.wellistics-single-product .product-image-container img {
    max-height: 450px; /* Limit image height to prevent excessive size */
    width: auto; /* Allow width to adjust */
}

/* WFI text positioning adjustments for single product */
.wellistics-single-product .wfi-text {
    font-size: 2.2em; /* Slightly larger for single product */
    padding: 15px;
}

.wellistics-single-product .wfi-text.horizontal {
    top: 30px;
    left: 30px;
}

.wellistics-single-product .wfi-text.vertical {
    top: 50%;
    right: 30px; /* Slightly more space from edge */
}

/* Key Highlights Styling */
.key-highlights {
    padding: 1.5rem;
    background-color: var(--secondary-color); /* Light background for highlights */
    border-radius: var(--button-border-radius); /* Softer corners */
    box-shadow: var(--shadow-light);
}

.key-highlights h4 {
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.key-highlights ul li {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.key-highlights ul li i {
    font-size: 1.3rem; /* Adjust icon size */
}

/* Custom button for interaction */
.wellistics-btn-primary.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}