@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primary-color: #c7081b;
    --secondery-color: #303440;
    --white-color: #ffffff;
    --black-color: #000000;
    --border-color: #eeeeee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 65px;
    line-height: 1.1;
    font-weight: bold;
}

h2 {
    font-size: 55px;
    line-height: 1.1;
    font-weight: 600;
}

h3 {
    font-size: 22px;
    line-height: 1.27;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

h5 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

h6 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 1.38;
    font-weight: 400;
    color: #868689;
    letter-spacing: 0.3px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
}

p:last-child {
    margin-bottom: 0;
}

h2>span {
    color: var(--primary-color);
}

img,
svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
iframe{
    max-width: 100%;
    vertical-align: middle;
    border: none;
}
body:not(.single-post ) iframe{
    height: auto;
}
a {
    text-decoration: none;
    color: var(--black-color);
    transition: 0.3s;
}

ul {
    margin-left: 30px;
}

a:visited {
    color: inherit;
}

a:hover {
    color: var(--primary-color);
}

.btn a {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 8px;
    display: inline-block;
}

.btn a:hover {
    background-color: var(--black-color);
}

body {
    font-size: 16px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

/* header-css start */

.site-header {
    position: relative;
    width: 100%;
    padding: 23px 0;
    box-shadow: 0 0 10px 0px #0000001a;
}

.site-header .site-branding-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.site-header .site-branding-wrap .site-logo-section {
    width: 100%;
    max-width: 234px;
}

.site-header .site-branding-wrap .site-logo-section img {
    width: 100%;
}

.site-header .site-branding-wrap .main-navigation {
    width: calc(100% - 234px);
    text-align: right;
}

.site-header .site-branding-wrap .main-navigation .nav-menu {
    justify-content: flex-end;
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li a {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondery-color);
    font-weight: 500;
    line-height: normal;
    transition: 0.3s;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li {
    position: relative;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li a:hover {
    color: var(--primary-color);
}

.site-header .site-branding-wrap .main-navigation .nav-menu li .sub-menu {
    position: absolute;
    left: 0;
    border-radius: 0px;
    display: none;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    padding: 0;
    border-top: 2px solid var(--primary-color);
    min-width: 215px;
    width: 100%;
    background: var(--white-color);
    max-width: 255px;
}

.site-header .site-branding-wrap .main-navigation .nav-menu .sub-menu li {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    transition: background 200ms ease;
    z-index: 50;
    border-bottom: 1px solid #f3f3f3;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li .sub-menu li a {
    width: 100%;
    color: #232323;
    font-weight: 600;
    transition: color 200ms ease;
    min-height: 48px;
    text-transform: uppercase;
    margin: 0;
    padding: 15px 20px;
    font-size: 14px;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li .sub-menu li a:hover {
    color: var(--primary-color);
}

.site-header .site-branding-wrap .main-navigation .nav-menu li .sub-menu li:last-child a {
    border-bottom: 0;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li.menu-item-has-children {
    padding-right: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li.menu-item-has-children .submenu-icon {
    position: relative;
    top: 0px;
    right: 2px;
    cursor: pointer;
}

.site-header .site-branding-wrap .main-navigation .nav-menu li.menu-item-has-children.active-menu-bar .submenu-icon {
    transform: rotate(-180deg);
}

.site-header .site-branding-wrap .main-navigation .menu-toggle .dashicons-menu {
    display: none;
}

/* header-css end */


/* banner-css strat */

.banner-sec {
    background-color: var(--secondery-color);
    padding: 75px 100px;
    width: 100%;
    overflow: hidden;
}

.banner-sec .banner-slider .owl-item {
    transform: scale(0.92);
    transition: 0.4s ease;
}

.banner-sec .banner-slider .owl-item.active.center {
    transform: scale(1);
    transition: 0.4s ease;
}

.banner-sec .banner-slider {
    max-width: 1310px;
    margin: auto;
    padding: 0 15px;
}

.banner-sec .banner-slider .owl-stage-outer {
    overflow: visible;
}

.banner-sec .banner-slider .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-sec .banner-slider .owl-item .banner-main {
    height: 370px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.banner-sec .banner-slider .owl-item .banner-main::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    z-index: 9;
    background-color: transparent;
    background-image: linear-gradient(180deg, #346dc200 72%, var(--black-color) 100%);
}

.banner-sec .banner-slider .owl-item.active.center .banner-main {
    height: 400px;
}

.banner-sec .banner-slider .banner-main .banner-post-img,
.banner-sec .banner-slider .banner-main .banner-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.banner-sec .banner-slider .banner-main .banner-post-title {
    position: absolute;
    width: 100%;
    bottom: 25px;
    text-align: center;
    left: 0;
    padding: 0 15px;
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
}

.banner-sec .banner-slider .owl-item.active.center .banner-main .banner-post-title {
    opacity: 1;
}

.banner-sec .banner-slider .banner-main .banner-post-img>a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0 !important;
    width: 100%;
    display: block;
    height: 100%;
    z-index: 999;
} 

.banner-sec .banner-slider .banner-main .banner-post-title h1 {
    font-size: 26px;
    line-height: normal;
    margin: 0;
    color: var(--white-color);
}

.banner-sec .banner-slider .owl-nav>button {
    position: absolute !important;
    left: 0;
    top: 50%;
    color: var(--white-color) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background-color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    transition: 0.3s;
    justify-content: center;
    border: 0 !important;
    outline: none !important;
    transform: translateY(-50%);
}

.banner-sec .banner-slider .owl-nav>button:hover {
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
}

.banner-sec .banner-slider .owl-nav>button.owl-prev {
    left: -13%;
}

.banner-sec .banner-slider .owl-nav>button.owl-next {
    right: -13%;
    left: auto;
}

/* banner-css end */

/* search-css start */

.search-sec {
    width: 100%;
    padding: 27px 0;
    background-color: var(--white-color);
    box-shadow: 0 0 10px #00000038;
    position: relative;
    z-index: 1;
}

.search-sec .container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.search-sec .search-form {
    max-width: 752px;
    margin: 0 auto;
    width: 100%;
}

.search-sec .search-form form {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    gap: 20px 20px;
}

.search-sec .search-form form input[type="search"] {
    width: calc(100% - 280px);
    font-size: 16px;
    line-height: 22px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    color: var(--secondery-color);
    padding: 12px 20px ! IMPORTANT;
    border: 2px solid var(--border-color);
    border-radius: 10px ! IMPORTANT;
    opacity: 1;
}

.search-sec .search-form form input[type="submit"] {
    width: 100%;
    max-width: 260px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 22px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    padding: 12px 20px;
    transition: 0.3s;
    min-height: 50px;
}

.search-sec .search-form form input[type="submit"]:hover {
    background-color: var(--black-color);
}

.search-sec .dropdown-search {
    width: calc(100% - 772px);
}

.search-sec .dropdown-search form {
    display: flex;
    font-family: "Fira Sans", sans-serif;
    gap: 8px;
    align-items: center;
}

.search-sec .dropdown-search form label {
    font-size: 16px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    color: #161616;
    min-width: 175px;
}

.search-sec .dropdown-search form select {
    width: 100%;
    display: block;
    border: 1px solid #dddddd;
    background-color: transparent;
    padding: 16px 30px 18px 15px;
    font-size: 16px;
    line-height: normal;
    border-radius: 10px;
    color: var(--black-color);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/arrow-down-black.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: calc(100% - 17px);
}

.search-sec .dropdown-search form select option {
    background-color: #ffffff;
}


/* search-css end */

/* latest-post-css start */

.latest-post-sec {
    width: 100%;
    background-color: #f6f6f6;
    padding: 55px 0 95px;
    position: relative;
}

.latest-post-sec .container>h5 {
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 3.28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.latest-post-sec .container>h2 {
    text-align: center;
    color: var(--black-color);
}

.latest-post-sec .post-items {
    margin-top: 40px;
}

.latest-post-sec .post-items {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
}

.latest-post-sec .post-items .left-image-item {
    width: 100%;
    max-width: 680px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.latest-post-sec .post-items .left-image-item img {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
    object-fit: cover;
}

.latest-post-sec .post-items .left-image-item img:hover {
    transform: scale(1);
}

.latest-post-sec .post-items .right-list-item {
    width: calc(100% - 720px);
}

.latest-post-sec .post-items .right-list-item .post-item {
    display: flex;
    gap: 13px;
    margin-bottom: 18px;
    justify-content: flex-start;
    align-items: center;
}

.latest-post-sec .post-items .right-list-item .post-item:last-child {
    margin-bottom: 0;
}

.latest-post-sec .post-items .right-list-item .post-item .post-thumb {
    width: 100%;
    max-width: 135px;
    border-radius: 2px;
    overflow: hidden;
}

.latest-post-sec .post-items .right-list-item .post-item .post-thumb a {
    display: block;
    padding-top: 71%;
    position: relative;
}

.latest-post-sec .post-items .right-list-item .post-item .post-thumb a img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    transition: 0.3s ease-in-out;
    transform: scale(1);
    top: 0;
    object-fit: cover;
}

.latest-post-sec .post-items .right-list-item .post-item .post-thumb a:hover img {
    transform: scale(1.1);
}

.latest-post-sec .post-items .right-list-item .post-item .post-content {
    width: calc(100% - 148px);
}

.latest-post-sec .post-items .right-list-item .post-item .post-content h5 {
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 93%;
}

.latest-post-sec .post-items .right-list-item .post-item .post-content h5 a {
    color: #161616;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    line-height: inherit;
    transition: 0.3s;
}

.latest-post-sec .post-items .right-list-item .post-item .post-content h5 a:hover {
    color: var(--primary-color);
}

.latest-post-sec .post-items .right-list-item .post-item .post-content p {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* latest-post-css end */

/* news-sec-css start */

.news-sec {
    position: relative;
    width: 100%;
    background-color: var(--white-color);
    padding: 92px 0;
}

.news-sec .container>h5 {
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 3.28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.news-sec .container>h2 {
    text-align: center;
    color: var(--black-color);
}

.news-sec .container>.btn,
.latest-post-sec .container>.btn {
    margin-top: 40px;
    text-align: center;
}

.news-sec .news-post-items {
    display: flex;
    gap: 33px;
    margin-top: 44px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.news-sec .news-post-items .post-item {
    width: calc(100% / 3 - 66px / 3);
    padding: 26px 17px 27px 18px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 23px #0000001f;
}

.news-sec .news-post-items .post-item .news-image {
    width: 100%;
    padding-top: 62%;
    position: relative;
    margin-bottom: 18px;
    overflow: hidden;
}

.news-sec .news-post-items .post-item .news-image a {
    width: 100%;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.news-sec .news-post-items .post-item .news-image a img {
    width: 100%;
    transition: 0.3s ease-in-out;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.news-sec .news-post-items .post-item .news-image a:hover img {
    transform: scale(1.1);
}

.news-sec .news-post-items .post-item .news-content .news-meta {
    display: flex;
    align-items: center;
    gap: 10px 17px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.news-sec .news-post-items .post-item .news-content .news-meta .author a,
.news-sec .news-post-items .post-item .news-content .news-meta .date {
    font-size: 14px;
    line-height: 17px;
    color: #868689;
    padding-left: 23px;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/user.png);
    background-size: 16px;
    background-position: left;
    background-repeat: no-repeat;
}

.news-sec .news-post-items .post-item .news-content .news-meta .author a img {
    display: none;
}

.news-sec .news-post-items .post-item .news-content .news-meta .author a:hover {
    color: var(--primary-color);
}

.news-sec .news-post-items .post-item .news-content .news-meta .date {
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/calendar-icon.png);
}

.news-sec .news-post-items .post-item .news-content h4 {
    margin-bottom: 9px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    color: #161616;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-sec .news-post-items .post-item .news-content .learn-btn {
    font-size: 16px;
    line-height: 1.38;
    display: inline-block;
    color: var(--primary-color);
    padding-right: 28px;
    background-size: 18px;
    background-position: right;
    transition: 0.3s;
    background-repeat: no-repeat;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/right-arrow.png);
}

.news-sec .news-post-items .post-item .news-content .learn-btn:hover {
    color: var(--black-color);
}

.news-sec .news-post-items .post-item .news-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    width: 100%;
    color: #868689;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.navigation {
    width: 100%;
    text-align: center;
}

.navigation .screen-reader-text {
    display: none;
}

.navigation .page-numbers {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: var(--secondery-color);
    padding: 4px;
    color: #fff;
    font-size: 14px;
}

.navigation .page-numbers:hover {
    background-color: var(--primary-color);
}

.navigation .page-numbers.current {
    background-color: var(--primary-color);
}

.navigation .page-numbers.next,
.navigation .page-numbers.prev {
    width: auto;
    padding: 4px 10px;
}

/* news-sec-css start */


/* about-sec-css start */

.about-sec {
    padding: 86px 0 109px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-sec .about-main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px 70px;
}

.about-sec .about-main .about-left {
    width: 100%;
    max-width: 508px;
}

.about-sec .about-main .about-left>h5 {
    padding-left: 86px;
    text-align: left;
    color: var(--primary-color);
    letter-spacing: 2.2px;
    font-weight: 600;
    margin-bottom: 20px;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/carpng.png);
    background-repeat: no-repeat;
    background-position: left;
}

.marker-text {
    padding-left: 21px;
    margin-bottom: 25px;
    border-left: 2px solid var(--primary-color);
}

.about-sec .about-main .about-one_right {
    width: calc(100% - 578px);
    min-height: 557px;
}

.about-one__img-box {
    position: relative;
    display: block;
    margin-left: 252px;
}

.about-sec .about-main .about-one_right img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
}

.about-sec .about-main .about-one_right .about-1 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--black-color);
    border-radius: 10px;
    z-index: 1;
    max-width: 450px;
    height: 351px;
}

.about-sec .about-main .about-one_right .about-1:hover img,
.about-sec .about-main .about-one_right .about-5:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}

.about-sec .about-main .about-one_right .about-2 {
    position: absolute;
    top: 133px;
    left: -190px;
    z-index: -1;
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.about-sec .about-main .about-one_right .about-3 {
    position: absolute;
    top: 0;
    left: -180px;
    z-index: -1;
}

.about-sec .about-main .about-one_right .about-4 {
    position: absolute;
    bottom: -197px;
    right: 39px;
    z-index: -1;
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

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

.about-sec .about-main .about-one_right .about-5 {
    position: absolute;
    left: -251px;
    bottom: -217px;
    overflow: hidden;
    background-color: var(--black-color);
    border-radius: 10px;
    max-width: 450px;
    height: 349px;
}

.about-sec .about-main .about-one_right .about-one__experience {
    position: absolute;
    top: 35px;
    left: -75px;
    max-width: 150px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    text-align: center;
    padding: 36px 20px 34px;
    border-bottom-left-radius: 0;
    z-index: 2;
}

.about-sec .about-main .about-one_right .about-one__experience::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    border-top: 35px solid var(--primary-color);
    border-left: 75px solid transparent;
}

.about-sec .about-main .about-one_right .about-one__experience-count {
    position: relative
}

.about-sec .about-main .about-one_right .about-one__experience-text {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 5px;
    margin-top: 0;
}

.about-sec .about-main .about-one_right .about-one__experience-count h3 {
    color: var(--white-color);
    font-size: 40px;
    font-family: "Poppins", sans-serif;
}

.about-sec .about-main .about-left h2 {
    margin-bottom: 13px;
}

.about-sec .about-main .about-left h3 {
    font-weight: 400;
    margin-bottom: 23px;
    font-family: "Poppins", sans-serif;
}

.about-sec .about-main .about-left .about-info {
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
    align-items: center;
}

.about-sec .about-main .about-left .about-info .btn a {
    padding-right: 43px;
    background-size: 18px;
    background-position: calc(100% - 18px);
    transition: 0.3s;
    background-repeat: no-repeat;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/right-arrow-white.png);
}

.about-sec .about-main .about-left .about-info .email {
    padding-left: 45px;
    position: relative;
    max-width: 320px;
}

.about-sec .about-main .about-left .about-info .email .email-icon {
    position: absolute;
    left: 0;
    top: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    padding: 7px;
}

.about-sec .about-main .about-left .about-info .email .email-icon img {
    filter: invert(1);
}

.about-sec .about-main .about-left .about-info .email h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--black-color);
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    width: 100%;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-sec .about-main .about-left .about-info .email a {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
}

.about-sec .about-main .about-left .about-info .email a:hover {
    opacity: 0.8;
    color: var(--secondery-color);
}

/* about-sec-css start */

/* counter-sec-css start */

.counter-sec {
    background-position: center;
    width: 100%;
    position: relative;
    padding: 43px 0 63px;
    background-size: cover;
    background-repeat: no-repeat;
}

.counter-sec::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #f6f6f6;
    opacity: 90%;
}

.counter-sec .container {
    position: relative;
    z-index: 9;
    max-width: 1690px;
}

.counter-sec .counter-items {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

.counter-sec .counter-items .single-item .counter-img {
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 25px;
    margin: auto;
    margin-bottom: auto;
    margin-bottom: 45px;
}

.counter-sec .counter-items .single-item .counter-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.counter-sec .counter-items .single-item .counter {
    font-size: 55px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 25px;
    display: block;
}

.counter-sec .counter-items .single-item p {
    font-size: 22px;
    line-height: 1.27;
    font-weight: 400;
    color: #161616;
}

.counter-sec .counter-items .single-item p strong {
    font-weight: 400;
}

.counter-sec .counter-items .single-item p strong span {
    color: var(--primary-color);
}

/* counter-sec-css end */

/* insta-sec-css end */

.insta-sec {
    padding: 120px 0 100px;
    position: relative;
    background-color: var(--white-color);
}

.insta-sec .container>h5 {
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 3.28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.insta-sec h2 {
    text-align: center;
    color: #000;
}

.insta-sec .insta-img {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.insta-sec .insta-img img {
    width: calc(100%/6 - 80px/6);
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.insta-sec .insta-img img:hover {
    opacity: 0.8;
}

/* counter-sec-css end */

/* footer-sec-css start */

.site-footer {
    padding: 86px 0 0;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.site-footer>div {
    position: relative;
    z-index: 9;
}

.site-footer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #272a30;
    opacity: 96%;
}

.footer-main-content .footer-grid-layout::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #68686c;
    left: 50%;
    max-width: 1280px;
    transform: translateX(-50%);
}

.site-footer .footer-cta-container {
    margin-bottom: 84px;
}

.site-footer .footer-cta-container .footer-contact-btn {
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 660px;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 13px 20px;
    transition: 0.3s;
    border-radius: 10px;
}

.site-footer .footer-cta-container .footer-contact-btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.site-footer .footer-cta-container {
    margin-bottom: 84px;
    text-align: center;
}

.footer-main-content {
    padding-top: 40px;
    padding-bottom: 91px;
}

.footer-main-content .footer-grid-layout {
    display: flex;
    justify-content: space-between;
    gap: 75px;
}

.footer-main-content .footer-grid-layout .branding-section {
    max-width: 343px;
}

.footer-main-content .footer-grid-layout .footer-column>h4 {
    font-size: 18px;
    color: var(--white-color);
    line-height: normal;
    padding-bottom: 0px;
    position: relative;
    display: block;
}

.footer-main-content .footer-grid-layout .footer-column .footer-red-divider {
    width: 100%;
    height: 4px;
    background-color: var(--white-color);
    max-width: 80px;
    background: linear-gradient(90deg, var(--primary-color) 44%, var(--black-color) 100%);
    margin-top: 16px;
}

.footer-main-content .footer-grid-layout .footer-column .main-navigation>ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-main-content .footer-grid-layout .footer-column .main-navigation {
    margin-top: 30px;
}

.footer-main-content .footer-grid-layout .footer-column .main-navigation>ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #999a9d;
    padding-left: 22px;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/arrow-right.png);
    background-position: left;
    background-size: 14px;
    background-repeat: no-repeat;
    display: inline-block;
}

.footer-main-content .footer-grid-layout .footer-column .main-navigation>ul li a:hover {
    color: var(--primary-color);
}

.footer-main-content .footer-grid-layout .branding-section a {
    display: inline-block;
    margin-bottom: 40px;
}

.footer-main-content .footer-grid-layout .footer-column {
    min-width: 212px;
}

.footer-main-content .footer-grid-layout .branding-section a img {
    width: 100%;
    height: 100%;
}

.footer-main-content .footer-grid-layout .branding-section .footer-red-divider {
    max-width: 113px;
    margin-top: 12px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--primary-color) 44%, var(--black-color) 100%);
}

.footer-main-content .footer-grid-layout .branding-section h3 {
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.footer-main-content .footer-grid-layout .branding-section p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    width: 100%;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-main-content .footer-grid-layout .footer-column .footer-contact-info {
    position: relative;
    padding-left: 36px;
    margin-top: 30px;
}

.footer-main-content .footer-grid-layout .footer-column .footer-contact-info .dashicons-email {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    width: 19px;
    height: 19px;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/email.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-main-content .footer-grid-layout .footer-column .footer-contact-info a {
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
}

.footer-main-content .footer-grid-layout .footer-column .footer-contact-info a:hover {
    color: var(--white-color);
}

.footer-bottom-bar {
    width: 100%;
    background-color: #22252a;
    padding: 14px 0;
}

.footer-bottom-bar {
    width: 100%;
    background-color: #22252a;
    padding: 14px 0;
}

.footer-bottom-bar .bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-bar .bottom-flex .site-info {
    font-size: 16px;
    font-weight: 400;
    color: #999a9d;
}

.footer-bottom-bar .bottom-flex .site-info span {
    color: var(--primary-color);
}

body.page {
    margin: 0;
}

.footer-main-content .footer-grid-layout .footer-column .main-navigation .menu-toggle {
    display: none;
}

/* footer-sec-css start */

.news-sec .page-header {
    text-align: center;
}

.page-title {
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.1;
}

.footer-social-icons a {
    opacity: 1;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    opacity: 0.6;
}

/* single page css start */

.featured-banner-section {
    width: 100%;
    max-width: 1310px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 0px;
    padding: 32px 15px 0;
    overflow: hidden;
}

.featured-banner-section .featured-video {
    padding-top: 52%;
    position: relative;
}

.featured-banner-section .featured-video iframe,
.featured-banner-section .featured-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
}

.featured-banner-section .featured-img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 420px;
}

.featured-banner-section .featured-img-banner,
.featured-banner-section .featured-img-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.featured-banner-section .featured-img-banner .featured-post-title {
    width: 100%;
    background-color: var(--primary-color);
    text-align: center;
    padding: 13px 15px;
    color: var(--white-color);
    max-width: 1280px;
    bottom: 0;
}

.featured-banner-section .featured-img-banner .featured-post-title h1 {
    margin: 0;
    font-size: 28px;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 0.07px;
}


.featured-content-sec h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}

.featured-content-sec h2:last-child {
    margin-bottom: 0;
}

.featured-content-sec p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.featured-content-sec h3 {
    font-size: 24px;
    font-weight: 400;
}

.featured-content-sec h4 {
    font-size: 22px;
    font-weight: 400;
}

.featured-content-sec h5 {
    font-size: 20px;
    font-weight: 400;
}

.featured-content-sec h6 {
    font-size: 18px;
    font-weight: 700;
}

.featured-content-sec {
    padding: 35px 0 40px;
    background-color: #f6f6f6;
}

.featured-content-sec .all-content {
    display: flex;
    justify-content: flex-start;
    gap: 32px; 
    flex-wrap: wrap;
    align-items: flex-start; 
}

.featured-content-sec .entry-content {
    margin: 0;
    width: calc(100% - 438px);
    max-width: 100%;
    background-color: #ffffff;
    padding: 40px 20px;
    box-shadow: 0 0 10px 0px #0000001a;
}

.featured-content-sec .sidebar-main {
    width: 100%;
    max-width: 406px;
}

.featured-content-sec .entry-content table {
    width: 100%;
    margin: 20px 0 50px;
    border: 0;
    border-collapse: collapse;
}

.featured-content-sec .entry-content table tr td {
    font-size: 18px;
    color: #868689;
    border-bottom: 1px solid #ddd;
    line-height: 30px;
    padding: 5px 9px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0;
}

.featured-content-sec .entry-content table tr:first-child td {
    border-top: 1px solid #ddd;
}

.featured-content-sec .entry-content table {
    width: 100%;
    margin: 20px 0 50px;
}

.gallery {
    grid-gap: 0.75em;
}

.gallery .gallery-item {
    position: relative;
    margin: 0;
}

.gallery .gallery-item a {
    width: 100%;
    display: block;
    height: auto;
    overflow: hidden;
    padding-top: 70%;
    position: relative;
}

.gallery.gallery-columns-3 .gallery-item a {
    padding-top: 80%;
}

.gallery.gallery-columns-4 .gallery-item a,
.gallery.gallery-columns-5 .gallery-item a,
.gallery.gallery-columns-6 .gallery-item a {
    padding-top: 100%;
}

.gallery .gallery-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    transform: scale(1);
    position: absolute;
    top: 0;
    left: 0;
}

.gallery .gallery-item a:hover img {
    transform: scale(1.1);
}

.gallery .gallery-item figcaption {
    position: absolute;
    top: 0;
    background-color: #25282e;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    font-family: "Poppins", sans-serif;
    width: 100%;
    color: #ffffff;
    left: 0;
    line-height: 1.2;
    padding: 11px 9px 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery .gallery-item figcaption::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 9px;
    background-color: #25282e;
    left: 0;
    bottom: 0;
    z-index: 9;
}

.gallery.gallery-columns-6 {
    grid-gap: 0.4em;
}

.gallery.gallery-columns-6 figcaption {
    display: none;
}

.video-outer {
    position: relative;
    padding-top: 52%;
    margin-bottom: 40px;
}

.video-outer iframe,
.video-outer video,
.video-outer img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.review-rating {
    width: 100%;
    padding-top: 38px;
    text-align: center;
    margin-bottom: 65px;
}

/* star rating icons css on detail page, importent */
.star-rating {
    font-size: 33px;
    color: #ffc107;
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.star {
    position: relative;
    display: inline-block;
    line-height: 27px;
}

.star.empty {
    color: #e0e0e0;
}

.star.half {
    color: #e0e0e0;
}

.star.half::before {
    content: "★";
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ffc107;
}

.rating-number {
    font-size: 14px;
    margin-left: 6px;
    color: #555;
}

/* star rating icons css on detail page */

.related-post-items h5 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.related-post-items a {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    line-height: 2.2;
    color: var(--primary-color);
}

.related-post-items a:hover {
    color: var(--black-color);
}

.sidebar-main .sidebar-form {
    background-color: #fff;
    margin-bottom: 9px;
    padding: 44px 27px 42px 24px;
    box-shadow: 0 0 10px 0px #0000001a;
}

.sidebar-main .sidebar-form form {
    display: flex;
    padding: 14px 10px 13px;
    background-color: #f2f3f3;
    gap: 2px;
    justify-content: flex-start;
}

.sidebar-main .sidebar-form form #search {
    font-size: 16px;
    padding: 12px 22px 13px;
    line-height: normal;
    border: 0;
    border-radius: 2px;
    color: #000;
    width: calc(100% - 67px);
}

.sidebar-main .sidebar-form form input[type="submit"] {
    font-size: 0;
    border: 0;
    background-color: var(--primary-color);
    width: 65px;
    height: 46px !important;
    min-height: auto !important;
    background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/search-outline-svgrepo-com-1.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: center;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-main .sidebar-form form input[type="submit"]:hover {
    background-color: var(--black-color);
}

.featured-content-sec .sidebar-main .latest-post-sec {
    padding: 33px 27px 14px 24px;
    box-shadow: 0 0 10px 0px #0000001a;
}

.featured-content-sec .sidebar-main .latest-post-sec .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.featured-content-sec .sidebar-main .latest-post-sec h3,
.brand-sec h3 {
    border-bottom: 2px solid #e3e3e3;
    color: #323232;
    margin: 0 0 10px;
    padding: 0px 0px 13px 0;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    position: relative;
}

.featured-content-sec .sidebar-main .latest-post-sec h3::before,
.brand-sec h3::before {
    background-color: var(--primary-color);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    bottom: -2px;
    width: 70px;
}


.featured-content-sec .sidebar-main .latest-post-sec .post-items {
    padding: 0;
    display: block;
    margin-top: 10px;
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item {
    width: 100%;
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item {
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
    align-items: flex-start;
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item .post-thumb {
    max-width: 100px;
    border-radius: 0;
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item .post-thumb a {
    padding-top: 80%;
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item .post-content {
    width: calc(100% - 115px);
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item .post-content h5,
.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item .post-content h5 a {
    font-size: 15px;
    font-weight: 500 !important;
    line-height: 1.6em;
    font-family: "Poppins", sans-serif !important;
    width: 100%;
    margin-bottom: 0;
}

.featured-content-sec .sidebar-main .latest-post-sec .post-items .right-list-item .post-item .post-content p {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.42857143;
}

.brand-sec {
    position: relative;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    background-color: var(--white-color);
    border: 1px solid #eee;
    padding: 20px 24px;
    margin-top: 9px;
    box-shadow: 0 0 10px 0px #0000001a;
}

.brand-sec .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.brand-sec .brand-items table {
    margin-bottom: 20px;
    border: 0;
    border-collapse: collapse;
}

.brand-sec .brand-items table tr td {
    border-bottom: 1px solid #ddd;
    line-height: 39px;
}

.brand-sec .brand-items table tr td a span {
    color: #ddd;
    transition: 0.3s;
}

.brand-sec .brand-items table tr td a:hover span {
    color: var(--primary-color);
}

.navigation.posts-navigation {
    background-color: #f6f6f6;
    margin: 0;
    padding: 20px 0 40px;
}

.navigation.posts-navigation .nav-links {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.navigation.posts-navigation .nav-links .nav-previous {
    text-align: left;
}

.news-sec+.navigation.posts-navigation {
    margin-top: -70px;
    position: relative;
    z-index: 99;
}

/* single page css end */

.single .site-main {
    background-color: #f6f6f6;
}

.fancybox__nav button {
    background-color: var(--primary-color);
    padding: 13px;
    transition: 0.3s;
}

.fancybox__nav button:hover {
    background-color: var(--black-color);
}

/* 404 page css start */

/* ===== 404 PAGE DESIGN ===== */
.error-404.not-found,
.no-results.not-found {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f9fc, #eef2f7);
    padding: 60px 0px;
    text-align: center;
}


/* Heading */

/* Sub text */
.error-404 .page-content p,
.no-results .page-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.search-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 35px;
    justify-content: center;
    gap: 10px;
}

/* Go Home Link */
.error-404 .page-content .search-section .btn-home a {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.error-404 .page-content .search-section .btn-home :hover {
    background: var(--black-color);
}

/* Search Box */
.error-404 .search-form,
.no-results .page-content .search-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404 .search-field,
.no-results .page-content .search-form .search-field {
    width: 260px;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.error-404 .search-field:focus,
.no-results .page-content .search-form .search-field:focus {
    border-color: var(--primary-color);
}

.error-404 .search-submit,
.no-results .page-content .search-form .search-submit {
    padding: 12px 22px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.error-404 .search-submit:hover,
.no-results .page-content .search-form .search-submit:hover {
    background: var(--black-color);
}

/* 404 page css end */


/* contact-page css start */
.page-id-69 .main {
    background-color: #f6f6f6;
}

.contact-content {
    width: 100%;
    position: relative;
}

.contact-content .content-row {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-content .content-row .contact-left {
    background-color: #ffffff;
    padding: 40px 20px;
    box-shadow: 0 0 10px 0px #0000001a;
}

.contact-content .content-row .contact-right {
    padding: 0;
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-content .content-row .contact-right ul:last-child {
    margin-bottom: 0;
}

.contact-content .content-row h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.contact-content .content-row .contact-right h4 {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.contact-content .content-row .contact-right h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 80px;
    height: 1px;
    left: 0;
    background-color: var(--primary-color);
}

.contact-content .content-row .contact-right ul {
    margin-left: 30px;
}

.container .form-sec .container,
.container .contact-content .container {
    padding: 0;
    max-width: 100%;
}

.form-sec {
    padding: 50px 0;
}

.form-sec .form-outer-row {
    width: 100%;
    position: relative;
    background-color: #131222;
    border-radius: 10px;
    padding: 40px 30px 40px;
    box-shadow: 0 0 10px 0px #0000001a;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.form-sec .form-outer-row>div {
    width: calc(100%/2 - 60px/2);
}

.form-sec .form-outer-row .form-left {
    position: relative;
    padding-top: 36%;
}

.form-sec .form-outer-row .form-left iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.form-title h2 {
    font-size: 35px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 25px;
    position: relative;
}

.form-title h2::after {
    content: "";
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

/* ===== FORM LAYOUT ===== */
.contact-form {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-form .form-data {
    margin-bottom: 15px;
}

/* INPUT & TEXTAREA */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 11px 13px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
    background: rgb(255 255 255 / 5%);
    transition: 0.3s ease;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* TEXTAREA */
.contact-form textarea {
    max-height: 130px;
    resize: vertical;
    height: auto;
}

/* PLACEHOLDER */
.contact-form ::placeholder {
    color: #ffffff;
}

/* ===== SUBMIT BUTTON ===== */
.contact-form input[type="submit"] {
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    padding: 13px 20px;
    border-radius: 10px;
    min-width: 210px;
}

.contact-form input[type="submit"]:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

/* ===== VALIDATION & RESPONSE ===== */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #dc2828;
    margin-top: 6px;
}

.wpcf7-response-output {
    margin-top: 25px;
    padding: 14px 18px;
    border-radius: 10px;
    color: var(--white-color);
    font-size: 14px;
}

/* Success */
.wpcf7-mail-sent-ok {
    background: #ecfdf5;
    color: var(--white-color);
    border: 1px solid #6ee7b7;
}

/* Error */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* contact-page css end */

/* inner page banner css start */
.banner-section {
    overflow: hidden;
    background-color: #000;
    position: relative;
    padding: 68px 0 77px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 40px;
    min-height: 380px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.banner-section .container {
    width: 100%;
}

.banner-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.6;
}

.banner-section>div {
    position: relative;
    z-index: 9;
}

.banner-section .banner-title {
    margin: 0;
    color: #fff;
}
.single-post .featured-content-sec .entry-content p:not(.p-full-width) .imgWrapper,
.featured-content-sec .entry-content p > .aligncenter, .featured-content-sec .entry-content p > .alignleft, .featured-content-sec .entry-content p > .alignright {
    display: inline-block;
    margin:0 7px;
    height: 145px;
    width: auto; 
    max-width: 217px;

}
.banner-sec .banner-slider .owl-dots button.owl-dot span{
    display: none;
}

.banner-sec .banner-slider .owl-dots {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    bottom: -40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.banner-sec .banner-slider .owl-dots button.owl-dot {
    width: 20px;
    height: 5px;
    background: #fff;
    margin: 0 5px;
    border-radius: 0;
    transition: all 0.35s ease-in-out;
}
.banner-sec .banner-slider .owl-dots button.owl-dot.active{
    width: 40px;
    background-color: var(--primary-color);
}
.single-post .featured-content-sec .entry-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.single-post .featured-content-sec .entry-content > figure {
    width: calc(100% / 3 - 12px) !important;
    position: relative;
    margin: 0 6px 12px;
}
.single-post .featured-content-sec .entry-content > figure img {
    width: 100%;
}
.single-post .featured-content-sec .entry-content > figure figcaption {
    position: absolute;
    top: 0;
    background-color: #25282e;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    font-family: "Poppins", sans-serif;
    width: 100%;
    color: #ffffff;
    left: 0;
    line-height: 1.2;
    padding: 11px 9px 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.single-post .featured-content-sec .entry-content > figure figcaption:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 9px;
    background-color: #25282e;
    left: 0;
    bottom: 0;
    z-index: 9;
}
.single-post .featured-content-sec .entry-content p, .single-post .featured-content-sec .entry-content h1, 
.single-post .featured-content-sec .entry-content h2, .single-post .featured-content-sec .entry-content h3,
.single-post .featured-content-sec .entry-content h4, .single-post .featured-content-sec .entry-content h5,
.single-post .featured-content-sec .entry-content > hr, .single-post .featured-content-sec .entry-content > ul,
.single-post .featured-content-sec .entry-content > div{
    width: 100%;
}
.single-post .featured-content-sec .entry-content > ul li {
    font-size: 18px;
    line-height: 1.7;
    color: #868689;
    letter-spacing: 0.3px;
}

.single-post .featured-content-sec .entry-content p a {
    color: #c7081b;
}
.single-post .featured-content-sec .entry-content p a:hover {
    text-decoration: underline;
}
.single-post .featured-content-sec .entry-content p > img.size-thumbnail {
    cursor: pointer;
} 
.single-post .featured-content-sec .entry-content p:not(.p-full-width) .imgWrapper img {
    width: auto;
    height: 100%;
    object-fit: cover;

} 

.single-post .featured-content-sec .entry-content p.p-full-width {
    display: none !important;
}
 
/* inner page banner css end */

@media (max-width:1680px) {
    .banner-sec .banner-slider .owl-nav>button.owl-prev {
        left: -80px;
    }

    .banner-sec .banner-slider .owl-nav>button.owl-next {
        right: -80px;
        left: auto;
    }
}


@media (max-width:1440px) {

    h1 {
        font-size: 55px;
    }

    h2 {
        font-size: 45px;
    }


    .banner-sec .banner-slider .banner-main .banner-post-title h1 {
        font-size: 22px;
    }

    .latest-post-sec .post-items .left-image-item {
        max-width: 560px;
    }

    .latest-post-sec .post-items .right-list-item {
        width: calc(100% - 600px);
    }

    .counter-sec .counter-items .single-item .counter {
        font-size: 45px;
    }

    .counter-sec .counter-items .single-item .counter-img {
        width: 78px;
        height: 78px;
        padding: 20px;
        margin-bottom: 30px;
    }

    .about-sec {
        padding: 86px 0 92px;
    }

    .site-footer {
        padding: 56px 0 0;
    }

    .site-footer .footer-cta-container {
        margin-bottom: 64px;
    }

    .footer-main-content {
        padding-bottom: 61px;
    }

    .featured-banner-section .featured-img-banner .featured-post-title h1 {
        font-size: 24px;
    }

    .featured-content-sec h2 {
        font-size: 22px;
        font-weight: 400;
    }

    .featured-content-sec p {
        font-size: 17px;
        line-height: 1.7;
    }

    .featured-content-sec h3 {
        font-size: 20px;
        font-weight: 400;
    }

    .featured-content-sec h4 {
        font-size: 18px;
        font-weight: 400;
    }

    .featured-content-sec h5 {
        font-size: 16px;
        font-weight: 400;
    }

    .featured-content-sec h6 {
        font-size: 16px;
        font-weight: 700;
    }

    .contact-content .content-row h2,
    .form-title h2 {
        font-size: 28px;
    }
    .single-post .featured-content-sec .entry-content > ul li{
        font-size: 17px;
        line-height: 1.7;
    }
}

@media (max-width:1200px) {
    .counter-sec .counter-items {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .counter-sec .counter-items .single-item {
        width: calc(100%/3 - 80px/3);
    }

    .footer-main-content .footer-grid-layout .footer-column {
        min-width: 182px;
    }

    .search-sec .search-form {
        max-width: 672px;
    }

    .search-sec .dropdown-search {
        width: calc(100% - 692px);
    }

    .insta-sec {
        padding: 90px 0 80px;
    }

    .latest-post-sec .post-items .right-list-item .post-item .post-content h5 {
        width: 100%
    }

    .featured-content-sec .all-content {
        gap: 20px;
    }

    .featured-content-sec .sidebar-main {
        width: 100%;
        max-width: 350px;
    }

    .featured-content-sec .entry-content {
        width: calc(100% - 370px);
        max-width: 100%;
    }

    .featured-content-sec .entry-content table tr {
        font-size: 16px;
        line-height: 21px;
    }

    .featured-content-sec .entry-content table {
        width: 100%;
        margin: 20px 0 30px;
    }

    .gallery .gallery-item figcaption {
        font-size: 16px;
        padding: 9px 9px 10px;
    }

    .review-rating {
        width: 100%;
        padding-top: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    .related-post-items a,
    .related-post-items h5 {
        font-size: 16px;
        font-family: "Poppins", sans-serif;
        line-height: 1.8;
        color: var(--primary-color);
    }

    .featured-banner-section .featured-img-banner .featured-post-title {
        padding: 10px 10px;
    }

    .form-sec {
        padding: 40px 0;
    }

    .banner-section {
        margin-bottom: 40px;
        min-height: 320px;
    }

    .about-sec .about-main .about-left {
        width: 100%;
        max-width: 100%;
    }

    .about-sec .about-main .about-one_right {
        width: 100%;
        max-width: 680px;
        margin-bottom: 40px;
    }

    .about-sec .about-main {
        flex-direction: column-reverse;
    }
    .single-post .featured-content-sec .entry-content > figure figcaption{
                font-size: 16px;
        padding: 9px 9px 10px;
    }

}

@media (max-width:1024px) {

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }


    .banner-sec .banner-slider .owl-nav>button {
        width: 40px;
        height: 40px;
    }

    .latest-post-sec .post-items .left-image-item {
        max-width: 100%;
    }

    .latest-post-sec .post-items .right-list-item {
        width: 100%;
    }

    .latest-post-sec {
        padding: 55px 0 65px;
    }

    .news-sec {
        padding: 62px 0;
    }

    .news-sec .news-post-items {
        gap: 20px;
        margin-top: 30px;
    }

    .news-sec .news-post-items .post-item {
        width: calc(100% / 2 - 20px / 2);
    }

    .counter-sec .counter-items .single-item .counter {
        font-size: 38px;
    }

    .counter-sec .counter-items .single-item p {
        font-size: 20px;
    }

    .counter-sec .counter-items .single-item .counter {
        margin-bottom: 15px;
    }

    .counter-sec .counter-items .single-item {
        width: calc(100%/3 - 80px/3);
    }

    .about-sec {
        padding: 66px 0 72px;
    }

    .footer-main-content .footer-grid-layout .footer-column {
        min-width: auto;
        max-width: 100% !important;
        width: 1000% !important;
    }

    .footer-main-content .footer-grid-layout {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-main-content .footer-grid-layout .footer-column .main-navigation {
        margin-top: 20px;
    }

    .footer-main-content .footer-grid-layout .footer-column .footer-red-divider {
        margin-top: 12px;
    }

    .footer-main-content .footer-grid-layout .footer-column .footer-contact-info {
        margin-top: 20px;
    }

    .footer-bottom-bar .bottom-flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
        align-items: center;
    }

    .site-header .site-branding-wrap .main-navigation {
        text-align: left;
        display: flex;
        justify-content: end;
        padding-left: 20px;
    }

    .site-header .site-branding-wrap .main-navigation .menu-toggle {
        display: inline-block;
        font-size: 0;
        padding: 0;
        border: 0;
        background-color: transparent;
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(https://beta.wheels-and-you.com/wp-content/uploads/2025/12/menu1.png);
        cursor: pointer;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        justify-content: flex-start;
        flex-direction: column;
        z-index: 999;
        text-align: left;
        display: none;

    }

    .site-header .site-branding-wrap .main-navigation .nav-menu>li a {
        font-size: 18px;
        text-transform: uppercase;
        color: var(--white-color);
        font-weight: 500;
        line-height: normal;
        padding: 10px 15px;
        background-color: #161616;
        display: inline-block;
        transition: 0.3s;
        width: 100%;
        display: block;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu>li {
        border-bottom: 1px solid #f3f3f3;
        transition: 0.3s;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu>li:hover>a,
    .site-header .site-branding-wrap .main-navigation .nav-menu li.current_page_item a {
        background-color: var(--primary-color);
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu li:last-child {
        border-bottom: 0;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu li:hover a {
        color: var(--white-color);
    }

    .search-sec .container {
        flex-direction: column;
    }

    .search-sec .search-form {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }

    .search-sec .dropdown-search {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu li.menu-item-has-children {
        display: block;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu li .sub-menu {
        position: static;
        width: 100%;
        border-radius: 0px;
        display: none;
        text-align: left;
        overflow: hidden;
        padding: 0;
        min-width: 200px;
        float: none !important;
        margin-top: 0px;
        width: 100%;
        max-width: 100%;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu li.menu-item-has-children .submenu-icon {
        right: 20px;
        position: absolute;
        top: 10px;
        color: #ffffff;
        transition: 0.3s;
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu li .sub-menu li a {
        display: block;
        padding-left: 30px;
        width: 100%;
        border-bottom: 0 !important;
        color: var(--white-color);
    }

    .site-header .site-branding-wrap .main-navigation .nav-menu li .sub-menu li a:hover,
    .site-header .site-branding-wrap .main-navigation .nav-menu .sub-menu li.current_page_item a {
        background-color: var(--black-color);
    }

    .insta-sec {
        padding: 60px 0 50px;
        position: relative;
        background-color: var(--white-color);
    }

    .insta-sec .container>h5 {
        margin-bottom: 15px;
    }

    .insta-sec .insta-img {
        margin-top: 25px;
    }

    .insta-sec .insta-img img {
        width: calc(100%/3 - 32px/3);
    }

    .featured-content-sec p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .featured-content-sec .sidebar-main {
        width: 100%;
        max-width: 100%;
    }

    .featured-content-sec .entry-content {
        width: 100%;
    }

    .sidebar-main .sidebar-form {
        padding: 24px 14px 22px 14px;
    }

    .featured-content-sec .sidebar-main .latest-post-sec {
        padding: 23px 14px 14px 14px;
    }

    .brand-sec {
        padding: 13px 15px;
        margin-top: 9px;
    }

    .gallery.gallery-columns-6 {
        grid-template-columns: repeat(4, 1fr);
    }

    .featured-content-sec .entry-content {
        padding-top: 25px;
    }

    .contact-content .content-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-sec .form-outer-row {
        gap: 30px;
    }

    .form-sec .form-outer-row>div {
        width: 100%;
    }

    .form-sec .form-outer-row .form-left {
        position: relative;
        padding-top: 57%;
    }

    .contact-content .content-row .contact-left {
        padding-top: 25px;
    }

    .search-sec .search-form form {
        justify-content: center;
    }
    .single-post .featured-content-sec .entry-content > ul li{
        font-size: 16px;
        line-height: 1.7;
    }

}

@media (max-width:767px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .banner-sec {
        padding: 65px 40px;
        width: 100%;
        overflow: hidden;
    }

    .banner-sec .banner-slider .owl-item.active.center .banner-main {
        height: 472px;
    }

    .banner-sec .banner-slider .owl-item .banner-main {
        height: 432px;
    }

    .banner-sec .banner-slider .banner-main .banner-post-title h1 {
        font-size: 18px;
    }

    .search-sec .search-form form {
        display: flex;
        gap: 20px 30px;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        text-align: center;
    }

    .search-sec .search-form form input[type="search"] {
        width: 100%;
        line-height: 20px;
        padding: 10px 20px ! IMPORTANT;
        opacity: 1;
    }

    .search-sec .search-form form input[type="submit"] {
        font-size: 16px;
        line-height: 20px;
        padding: 11px 20px;
        margin: auto;
    }

    .counter-sec .counter-items .single-item .counter {
        font-size: 30px;
    }

    .news-sec .news-post-items .post-item {
        width: 100%;
    }

    .featured-banner-section .featured-img-banner .featured-post-title h1 {
        font-size: 22px;
    }

    .featured-content-sec h2 {
        font-size: 20px;
        font-weight: 400;
    }

    .featured-content-sec h3 {
        font-size: 18px;
        font-weight: 400;
    }

    .featured-content-sec h4 {
        font-size: 16px;
        font-weight: 400;
    }

    .featured-content-sec h5 {
        font-size: 14px;
        font-weight: 400;
    }

    .featured-content-sec h6 {
        font-size: 14px;
        font-weight: 700;
    }

    .featured-content-sec p {
        font-size: 14px;
    }

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

    .contact-content .content-row h2,
    .form-title h2 {
        font-size: 24px;
    }

    .form-sec .form-outer-row {
        border-radius: 16px;
        padding: 30px 20px 30px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 9px 13px;
        border-radius: 8px;
        font-size: 14px;
    }

    .contact-form .form-data {
        margin-bottom: 12px;
    }

    .contact-form input[type="submit"] {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        padding: 11px 18px;
        border-radius: 8px;
        min-width: 160px;
    }

    .about-sec .about-main .about-one_right .about-4 {
        bottom: -197px;
    }

    .about-sec .about-main .about-one_right .about-5 {
        left: -251px;
        bottom: -205px;
        max-width: 370px;
        height: 299px;
    }

    .about-sec .about-main .about-one_right {
        margin-bottom: 0px;
    }

    .about-sec .about-main .about-one_right .about-1 {
        max-width: 370px;
        height: 301px;
    }

    .about-sec .about-main .about-one_right {
        width: 100%;
        max-width: 620px;

    }

    .about-sec .about-main .about-one_right .about-one__experience-count h3 {
        font-size: 31px;
    }

    .contact-content .content-row .contact-right {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .banner-sec .banner-slider .owl-nav {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center;
        margin-top: 20px !important;
    }

    .banner-sec .banner-slider .owl-nav>button {
        position: inherit !important;
        width: 40px;
        height: 40px;
    }
    .banner-sec .banner-slider .owl-nav{
        display: none;
    }
.banner-sec .banner-slider .owl-dots button.owl-dot{
    height: 3px;
}
.banner-sec .banner-slider .owl-dots {
    bottom: -34px;
}
.single-post .featured-content-sec .entry-content > figure {
    width: calc(100% / 2 - 12px) !important;
}
.single-post .featured-content-sec .entry-content > ul li{
        font-size: 14px;
    }
}


@media (max-width:640px) {
    .banner-sec .banner-slider .owl-item.active.center .banner-main {
        height: 392px;
    }

    .banner-sec .banner-slider .owl-item .banner-main {
        height: 342px;
    }

    .counter-sec .counter-items .single-item {
        width: calc(100%/2 - 40px/2);
    }

    .search-sec .dropdown-search form select {
        padding: 12px 13px 14px;
        font-size: 16px;
    }

    .insta-sec .insta-img img {
        width: calc(100%/2 - 16px/2);
    }

    .banner-sec .banner-slider .owl-item .banner-main::after {
        background-image: linear-gradient(180deg, #346dc200 35%, var(--black-color) 100%);
    }

    .brand-sec .brand-items table,
    .brand-sec .brand-items table tbody,
    .brand-sec .brand-items table tr,
    .brand-sec .brand-items table tr td {
        display: block;
        margin-bottom: 0;
    }

    .featured-content-sec .entry-content table,
    .featured-content-sec .entry-content table tbody,
    .featured-content-sec .entry-content table tbody tr,
    .featured-content-sec .entry-content table tbody tr td {
        display: block;
        width: 100%;
    }

    .featured-content-sec .entry-content table tr td:empty {
        display: none;
    }

    .featured-content-sec .entry-content table tr:first-child td:first-child {
        border-bottom: 0;
    }

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

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

    .gallery .gallery-item figcaption {
        font-size: 14px;
    }

    .error-404 .page-title {
        font-size: 34px;
    }

    .error-404.not-found,
    .no-results.not-found {
        min-height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f7f9fc, #eef2f7);
        padding: 50px 0px;
    }

    .error-404 .page-content p,
    .no-results .page-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .about-one__img-box {
        margin-left: 242px;
    }

    .about-sec .about-main .about-one_right .about-5 {
        left: -241px;
        max-width: 330px;
    }

    .about-sec .about-main .about-one_right .about-4 {
        right: -40px;
    }
    .single-post .featured-content-sec .entry-content p:not(.p-full-width) .imgWrapper,
    .featured-content-sec .entry-content p > .aligncenter, .featured-content-sec .entry-content p > .alignleft, .featured-content-sec .entry-content p > .alignright {
    display:block;
    margin:7px auto;
}
.single-post .featured-content-sec .entry-content > figure figcaption{
                font-size: 14px;
        padding: 9px 9px 10px;
    }
}

@media (max-width:480px) {

    .banner-sec .banner-slider .owl-item .banner-main {
        height: 292px;
    }

    .banner-sec .banner-slider .owl-item.active.center .banner-main {
        height: 332px;
    }

    .site-header .site-branding-wrap .site-logo-section img {
        max-width: 180px;
    }

    .search-sec .dropdown-search form {
        flex-direction: column;
    }

    .latest-post-sec .post-items .right-list-item .post-item .post-thumb {
        max-width: 110px;
    }

    .latest-post-sec .post-items .right-list-item .post-item .post-content {
        width: calc(100% - 123px);
    }

    .latest-post-sec .post-items .right-list-item .post-item .post-content p {
        font-size: 14px;
    }

    .banner-sec {
        padding: 44px 20px 57px;
        width: 100%;
        overflow: hidden;
    }

    .related-post-items a,
    .related-post-items h5 {
        font-size: 14px;
    }

    .featured-banner-section .featured-img-banner img {
        min-height: 240px;
    }

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

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

    .about-one__img-box {
        margin-left: 162px;
    }

    .about-sec .about-main .about-one_right .about-one__experience {
        max-width: 120px;
        padding: 16px 13px 24px;
    }

    .about-sec .about-main .about-one_right .about-one__experience-count h3 {
        font-size: 24px;
    }

    .about-sec .about-main .about-one_right .about-one__experience-text {
        font-size: 14px;
        line-height: 20px;
        margin-top: 3px;
        margin-bottom: 10px;
    }

    .about-sec .about-main .about-one_right .about-1 {
        max-width: 370px;
        height: 241px;
    }

    .about-sec .about-main .about-one_right .about-5 {
        left: -161px;
        bottom: -159px;
        max-width: 300px;
        height: 240px;
    }

    .about-sec .about-main .about-one_right {
        min-height: 397px;
    }

    .about-sec .about-main .about-one_right .about-3 {
        position: absolute;
        top: 0;
        left: -116px;
        z-index: -1;
        max-width: 200px;
    }

    .about-sec .about-main .about-one_right .about-4 {
        right: -40px;
        max-width: 230px;
        bottom: -140px;
    }
.banner-sec .banner-slider .owl-dots {
    left: -10px;
    width: calc(100% + 20px);
    bottom: -30px;
}
.banner-sec .banner-slider .owl-dots button.owl-dot {
    margin: 0 4px;
}
.single-post .featured-content-sec .entry-content > figure {
    width: 100% !important;
    margin: 0 0 12px !important;
}
}

@media (max-width:430px) {
    .about-one__img-box {
        margin-left: 132px;
    }

    .about-sec .about-main .about-one_right .about-5 {
        left: -131px;
        max-width: 260px;
    }
}

@media (max-width:380px) {
    .gallery.gallery-columns-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-one__img-box {
        margin-left: 70px;
    }

    .about-sec .about-main .about-one_right .about-5 {
        left: -73px;
    }

    .about-sec .about-main .about-one_right .about-3 {
        display: none;
    }
}


.gauge-wrapper {
    max-width: 400px;
    margin: 40px auto 0;
    text-align: center;
    padding: 20px 15px 10px;
    border-radius: 20px;
}

.gauge-svg {
    width: 100%;
}

.gauge-part {
    fill: none;
    stroke-width: 10;
    /* Thickness of the arc */
    stroke-linecap: butt;
    /* Clean edges between parts */
    stroke-linecap: round;
    opacity: 0;
    animation: arcFade 0.7s ease forwards;
}

/* Specific Colors for each part */
.steel-gray {
    stroke: #B0BEC5;
}

/* Part 1 */
.dark-gray {
    stroke: #546E7A;
}

/* Part 2 */
.red-part {
    stroke: #E53935;
}

/* Part 3 */
.black-part {
    stroke: #000000;
}

/* Part 4 */

/* Needle Animation */
.needle-group {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 50px 50px;
    /* Rotating around the center */
}

.needle-main {
    fill: #333;
    stroke: #333;
    stroke-width: 1;
}

.gauge-main {
    background-color: #ffffff;
    padding: 0 0 15px;
    border-radius: 185px 185px 10px 10px;
    margin: 10px 0 10px;
    box-shadow: 0 0 30px 0px #0000001a;
}

/* Text Styling */
.gauge-text {
    margin-top: 15px;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -1px;
}


.steel-gray {
    stroke: #37A64A;
    animation-delay: 0.1s;
}

.dark-gray {
    stroke: #ABD81B;
    animation-delay: 0.25s;
}

.red-part {
    stroke: #F1C700;
    animation-delay: 0.4s;
}

.black-part {
    stroke: #FC4F00;
    animation-delay: 0.55s;
}

.needle-main {
    fill: #ff2e2e;
}

/* Center dot */
circle {
    fill: #111;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}

/* Text */

.desire-color-2 {
    background: linear-gradient(90deg, #ff4d4d, #ff0022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes needleFloat {
    0% {
        transform: rotate(-90deg);
        opacity: 0;
    }

    60% {
        transform: rotate(95deg);
        opacity: 1;
    }

    100% {
        transform: rotate(90deg);
    }
}

@keyframes arcFade {
    from {
        opacity: 0;
        stroke-dasharray: 220;
        stroke-dashoffset: 220;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .gauge-text {
        font-size: 20px;
    }
}