@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "IBM Plex Sans Condensed", sans-serif;
}

:root {
    --primary-color: #F9320F;
    --second-color: #D6D6D8;
    /*  --third-color: #4A4A4A;*/
    --black-color: #000000;
    --white-color: #ffffff;

}

.bg-reds {
    background: #F9320F;
}

.bg-black {
    background: #000;
}

.btn-transp {
    border: 2px solid var(--white-color);
    text-decoration: none;
    padding: 10px 40px;
    color: var(--white-color);
    background: transparent;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;

}

.btn-transp:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    transform: scale(1.05);
}

/*********Navigation************/

.navbar {
    padding: 12px 0px;
}

a.navbar-brand img {
    max-width: 150px;
}

.navbar ul.navbar-nav li {
    padding: 0 10px;
}

.navbar ul.navbar-nav li a {
    font-size: 18px;
    color: var(--black-color);
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 500;
}

.navbar ul.navbar-nav li a.nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 50px;

}

.navbar-collapse {
    display: flex;
    justify-content: space-around;
}

.navbar .right-menus {
    display: flex;
    justify-content: space-around;
    list-style: none;
    align-items: center;
    margin: 0;
}

.navbar .right-menus li {
    margin: 0 15px;
}

.navbar .right-menus li a {
    text-decoration: none;
    font-size: 18px;
    color: var(--black-color);
}

/* Base styles */
.nav-item {
    position: relative;
    list-style: none;
}

.nav-item>a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #333;
    font-weight: 500;
}

/* Parent link */
.menu-item-has-children>a {
    position: relative;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #333;
    font-weight: 500;
}

/* Dropdown arrow after text */
.menu-item-has-children>a::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Rotate on hover */
.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Submenu styles */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    padding: 8px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 99;
}

.sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sub-menu li a:hover {
    background: #f4f4f4;
}

/* Show dropdown on hover */
.menu-item-has-children:hover>.sub-menu {
    display: block;
}



/***** Home Banner Slider *****/
#carouselVandykeautomotive .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    z-index: 10;
}

#carouselVandykeautomotive .carousel-caption h5 {
    font-size: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#carouselVandykeautomotive .carousel-caption h2 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 25px;
}


/* Indicators styling */
#carouselVandykeautomotive .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
}

#carouselVandykeautomotive .carousel-indicators button {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--white-color);
    font-weight: bold;
    font-size: 18px;
    border: none;
    opacity: 1;
    transition: opacity 0.3s, color 0.3s;
    cursor: pointer;
}

#carouselVandykeautomotive .carousel-indicators button.active {
    color: var(--primary-color);
    opacity: 1;
}

#carouselVandykeautomotive .carousel-indicators [data-bs-target]::before {
    content: none !important;
}

#carouselVandykeautomotive .carousel-indicators [data-bs-target] {
    background-color: transparent !important;
    margin-right: 20px !important;
}

/* Our latest online deals */
.our-latest {
    background-color: var(--primary-color);
    background-image: url('../images/ourlatestbg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 70px 0;
    display: none;
}

.our-latest .latest-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.our-latest .latest-content h2 {
    font-size: 42px;
    color: var(--white-color);
    text-transform: uppercase;
    max-width: 600px;
    line-height: 1.2;
}

.our-latest .latest-content .btn-shop {
    background: var(--white-color);
    color: var(--black-color);
    font-size: 18px;
    padding: 10px 40px;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
}


/* What We Do */

.what-we-do {
    background-color: var(--black-color);
}

.what-we-do h6 {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 18px;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.what-we-do h2 {
    font-size: 48px;
    color: var(--white-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.what-we-do h2 span {
    color: var(--primary-color);
}

.what-we-do p {
    font-size: 16px;
    line-height: 2;
    color: var(--second-color);
    margin: 0 auto 30px;
}

.what-we-do .fullservice-images {
    text-align: right;
    position: relative;
}

/* .what-we-do .fullservice-images img:first-child {
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 350px;
    width: auto;
    position: relative;
    z-index: 1;
} */

.what-we-do .fullservice-images img:last-child {
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 65px;
    height: 350px;
    width: auto;
}

/* Our Services  */

.our-services h6 {
    color: var(--black-color);
    font-size: 24px;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
}

.our-services h2 {
    font-size: 42px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}


.our-services .service-item {
    position: relative;
    color: white;
    text-align: left;
    height: 400px;
}

.our-services .service-item img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.our-services .service-item .content {
    position: absolute;
    bottom: 5px;
    left: 15px;
}

.our-services .service-item .content h2 {
    font-size: 28px;
    color: var(--white-color);
    padding-bottom: 0px;
    text-align: left;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.our-services .service-item .content p {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 0px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.our-services .service-item .content .btn-arrow {
    color: var(--white-color);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.our-services .service-item .content .btn-arrow:hover {
    transform: scale(1.2);
}

/* Owl carousel dots & nav */
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

.our-services .owl-nav {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.our-services .owl-nav button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.our-services .owl-nav button:hover {
    color: var(--primary-color) !important;
    background: transparent !important;
}

.our-services .owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    z-index: 1000;
}

.our-services .owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    z-index: 1000;
}

.our-services .owl-nav span {
    font-size: 42px;
    line-height: 1;
}

.our-services .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.our-services .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.our-services .owl-dots .owl-dot span {
    display: none;
    /* hide default dots */
}

.our-services .owl-dots .owl-dot:nth-child(n)::before {
    content: counter(dot);
    counter-increment: dot;
}

.our-services .owl-dots {
    counter-reset: dot;
}

.our-services .owl-dots .owl-dot.active {
    color: var(--primary-color);
}



/* Author & Storyteller */


.author-storyteller {
    background-color: var(--black-color);
    padding: 60px 0 110px;
}

.author-storyteller h6 {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 18px;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.author-storyteller h2 {
    font-size: 48px;
    color: var(--white-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.author-storyteller h2 span {
    color: var(--primary-color);
}

.author-storyteller p {
    font-size: 16px;
    line-height: 2;
    color: var(--second-color);
    margin: 0 auto 30px;
}

.author-storyteller .author-storyteller-images {
    text-align: center;
    position: relative;
}

.author-storyteller .author-storyteller-images img:first-child {
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 400px;
    width: 55%;
    position: relative;
    object-fit: cover;
}

.author-storyteller .author-storyteller-images img:last-child {
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 0px;
    height: 350px;
    width: auto;
}

/* Blogs */

.blogs h6 {
    text-transform: uppercase;
    color: var(--black-color);
    font-size: 18px;
    text-align: center;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}


.blogs h2 {
    font-size: 48px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.blogs h2 span {
    color: var(--primary-color);
}

.blog-item {
    background-color: #232225;
}

.blogs .blog-item .blog-head {
    padding: 15px;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--white-color);
    font-size: 14px;
    text-transform: uppercase;
    list-style: none;
}

.blogs .blog-item .blog-head li {
    margin: 0 10px;
}

.blogs .blog-item .blog-head li:last-child {
    color: #7E7E7E;
}

.blogs .blog-item h3 {
    font-size: 24px;
    color: var(--white-color);
    padding: 1px 20px;
}

.blogs .blog-item img {
    width: 100%;
    height: 400px;
    border-radius: 5px 5px 0 0;
}

.blogs .btn-readmore {
    color: var(--white-color);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 400;
    border: none;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
}

.blogs .btn-readmore:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.blogs .btn-viewall {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    padding: 10px 40px;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    margin: 30px auto 0;
}

.blogs .btn-viewall:hover {
    background: var(--black-color);
    color: var(--white-color);
    transform: scale(1.05);
}

/* Our Testimonials */

.our-testimonials {
    background-color: var(--black-color);
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.our-testimonials h6 {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 18px;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.our-testimonials h2 {
    font-size: 42px;
    color: var(--white-color);
    padding-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.our-testimonials h2 span {
    color: var(--primary-color);
}

.our-testimonials .profile-slider {
    max-width: 500px;
    margin: 0 auto;

}

.our-testimonials .profile-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ddd;
    transition: 0.3s;
    margin-left: 50px;
}

.our-testimonials .profile-item {
    height: 110px;
    margin-top: 30px;
}

.our-testimonials .profile-item.active img {
    transform: scale(1.2);
}

.our-testimonials .testimonial-content {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.our-testimonials .testimonial-content p {
    font-size: 16px;
    line-height: 2;
    color: #7E7E7E;
    margin-bottom: 10px;
}

.our-testimonials .testimonial-content p em {
    color: var(--white-color);
}

.our-testimonials .testimonial-content h4 {
    font-size: 20px;
    color: var(--white-color);
    margin-top: 10px;
}

.our-testimonials .testimonial-content.active {
    display: block;
}

/* Owl Carousel */


.our-testimonials .owl-carousel .owl-nav .owl-prev,
.our-testimonials .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -140px;
    transform: translateY(-50%);
    z-index: 10;
}

.our-testimonials .owl-nav .owl-prev {
    left: -100%;
}

.our-testimonials .owl-nav .owl-next {
    right: -100%;
}

.our-testimonials .owl-carousel .owl-prev span,
.our-testimonials .owl-carousel .owl-next span {
    color: #fff;
    font-size: 48px;
}

/* FAQ Section  */



.faqs .faq-header h6 {
    text-transform: uppercase;
    color: var(--black-color);
    font-size: 18px;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.faqs .faq-header h2 {
    font-size: 42px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.faqs .faq-header h2 span {
    color: var(--primary-color);
}

.faqs .accordion-button:not(.collapsed),
.faqs .accordion-button:focus {
    background-color: transparent;
    color: var(--black-color);
    box-shadow: none;
}

.faqs .accordion-header span {
    font-size: 20px;
    color: var(--black-color);
}

.faqs .faq-number {
    font-weight: bold;
    font-size: 1.5rem;
    color: gray;
    width: 50px;
}

.faqs .faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faqs .faq-icon {
    font-size: 1.5rem;
    width: 1.5rem;
    text-align: center;
}

.faqs .faq-section {
    max-width: 1000px;
    margin: 2rem auto;
}

.faqs .faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faqs .accordion-button::after {
    display: none;
}



/* Footer */

footer {
    background-color: var(--black-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.25rem;
}

.main-footer p {
    font-size: 16px;
    color: var(--white-color);
}

.main-footer h6 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.main-footer ul li {
    list-style: none;
    line-height: 2;
}

.main-footer ul li a {
    text-decoration: none;
    color: var(--white-color);
    transition: color 0.3s;
    font-weight: 400;
}

.footer-logo img {
    max-height: 40px;
}

.footer-links a,
.footer-socials a {
    color: var(--white-color);
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover,
.footer-socials a:hover {
    text-decoration: underline;
}

.newsletter-form input {
    border-radius: 0;
}

.newsletter-form button {
    border-radius: 0;
}

hr {
    border-top: 1px solid #444;
}

small {
    color: #aaa;
}

/* About us page */

/* inner banner */
.inner-banner {
    background-color: var(--black-color);
    background-image: url('../images/inner-banner.png');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 120px 0;
    text-align: center;
}

.inner-banner ol.breadcrumb {
    display: flex;
    justify-content: center;
    color: #fff;
}

.inner-banner li.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.inner-banner li.breadcrumb-item.active,
.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    text-transform: capitalize;
}

/* Air Conditioning */
.air-conditioning {
    padding: 80px 0;
}

.air-conditioning .air-conditioning-content h4 {
    font-size: 32px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 500;
}

.air-conditioning .air-conditioning-content p {
    font-size: 16px;
    color: #7E7E7E;
    padding-bottom: 20px;
    font-weight: 500;

}

.air-conditioning .air-conditioning-content li img {
    max-width: 355px;
    margin-right: 25px;
}

.air-conditioning .air-conditioning-content li {
    list-style: none;
    margin-bottom: 20px;


}

.contact-section {
    background-color: #EBEBEB;
    padding: 40px;
    color: var(--black-color)
}

.contact-section h4 {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #86898C;
    padding: 10px;
    font-size: 1rem;
    color: var(--black-color);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #86898C;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-form button {
    background: #F9320F;
    color: var(--white-color);
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: var(--black-color);
    transform: scale(1.05);
    color: var(--white-color);
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info li,
.contact-info li a {
    color: var(--black-color);
    text-decoration: none;
    font-size: 16px;
}

/* About Us Section */

.About-whatwe {
    background-color: var(--white-color);
}

.About-whatwe h6 {
    text-transform: uppercase;
    color: var(--black-color);
    font-size: 18px;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.About-whatwe h2 {
    font-size: 48px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.About-whatwe h2 span {
    color: var(--primary-color);
}

.About-whatwe p strong {
    color: var(--black-color);
}

.About-whatwe p {
    font-size: 16px;
    line-height: 2;
    color: #7E7E7E;
    margin: 0 auto 30px;
}

.About-whatwe .fullservice-images {
    text-align: right;
    position: relative;
}

/* .About-whatwe .fullservice-images img:first-child {
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 350px;
    width: auto;
    position: relative;
    z-index: 1;
} */

.About-whatwe .fullservice-images img:last-child {
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 65px;
    height: 350px;
    width: auto;
}

/* PREMIUM QUALITY */

.feature-card {
    text-align: center;
    padding: 20px;
    background-color: #F4F4F4;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Why choose  */
.why-choose-us .why-choose-middle {
    padding: 50px 10px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.why-choose-us .why-choose-middle h6 {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 18px;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.why-choose-us .why-choose-middle h2 {
    font-size: 48px;
    color: var(--white-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-choose-us .why-choose-middle h2 span {
    color: var(--primary-color);
}

.why-choose-us .why-choose-middle p {
    font-size: 16px;
    line-height: 2;
    color: var(--white-color);
    margin: 0 auto 30px;
    text-align: center;
}

/* Our Core Values */

.our-core-values h6 {
    text-transform: uppercase;
    color: var(--black-color);
    font-size: 18px;
    padding-bottom: 10px;
    text-align: center;
    font-family: "Open Sans", sans-serif;
}

.our-core-values h2 {
    font-size: 48px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.our-core-values h2 span {
    color: var(--primary-color);
}

.our-core-values p {
    font-size: 16px;
    line-height: 2;
    color: #7E7E7E;
    margin: 0 auto 30px;
    text-align: center;
}

.our-core-values img {
    display: block;
    max-height: 585px;
    width: 100%;
    object-fit: cover;
}

.our-core-values .card {
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #7E7E7E;
    height: 300px;
}

.our-core-values .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.our-core-values .card img {
    width: 60px;
    text-align: center;
    margin: 20px auto 15px;
}

.our-core-values .card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.our-core-values .card p {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 767px) {
    .our-core-values h2 {
        font-size: 2rem;
    }

    .our-core-values .card p {
        font-size: 0.9rem;
    }
}

/* Full-Service Section */
.full-service {
    padding: 60px 0;
    background: var(--black-color);
    overflow: hidden;
}

.full-service h2 {
    font-size: 42px;
    color: var(--white-color);
    padding-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;

}

.full-service h2 span {
    color: var(--primary-color);

    margin-bottom: 40px;
}

.full-service p {
    font-size: 16px;
    line-height: 2;
    color: #f8f8f8df;
    margin: 0 auto 30px;
    max-width: 800px;
}

.full-service ul {
    color: #f8f8f8df;
}

.full-service .counter-box {

    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;

}

.full-service .counter {
    font-size: 48px;
    font-weight: bold;
    color: var(--white-color);
    border-bottom: 1px solid #D6D6D8;
}

.full-service .label {
    font-size: 1rem;
    color: var(--white-color);
    margin-top: 10px;
}

/* About Counter Section */
.about-counter {
    padding: 40px 0;
    text-align: center;
    background: var(--primary-color);
}

.about-counter .counter-box {
    margin-bottom: 30px;
}

.about-counter .counter-number {
    font-size: 72px;
    font-weight: bold;
    color: var(--white-color);
}

.about-counter .counter-number.plus::after {
    content: "+";
    font-size: 72px;
    margin-left: 5px;
}

.about-counter .counter-label {
    font-size: 20px;
    margin-top: 10px;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
}

/* Blog Section */
.Blog-box {
    background-color: #F4F4F4;
}



.Blog-box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
    flex: 0;
}

.Blog-box .blog-content small {
    font-size: 16px;
    color: var(--black-color);
    text-transform: uppercase;
    font-weight: 600;
}

.Blog-box .blog-content small span {
    color: #7E7E7E;
}

.Blog-box .bg-light {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Blog-box .blog-content {
    padding: 10px 0 10px 10px;

}

.Blog-box .blog-content h4 {
    font-size: 24px;
    color: var(--black-color);
    margin: 15px 0;
    text-transform: uppercase;
    font-weight: 600;
}

.Blog-box .blog-content p {
    font-size: 16px;
    color: #7E7E7E;
    line-height: 1.5;
    flex-grow: 1;
}

.Blog-box .btn-readmore {
    border-radius: 0;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white-color);
    letter-spacing: 0.5px;
    padding: 10px 20px;
    text-align: left;
    width: max-content !important;
}

.Blog-box .btn-readmore:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.Blog-box .sidebar {
    padding: 20px 15px 10px;
    background: var(--white-color);
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Blog-box .sidebar h5 {
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.Blog-box .sidebar .form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    color: var(--black-color);
}

.Blog-box .sidebar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.Blog-box .sidebar .btn {
    border-radius: 0;
    background: transparent;
    color: #7E7E7E;
    border: 1px solid #7E7E7E;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.Blog-box .sidebar .btn:hover {
    background: var(--black-color);
    color: var(--white-color);
}

.Blog-box .sidebar .recent-post {
    display: flex;
    margin-bottom: 15px;
}

.Blog-box .sidebar .recent-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
}

.Blog-box .sidebar .recent-post .post-info h6 {
    font-size: 16px;
    color: var(--black-color);
    margin: 0 0 5px;
    font-weight: 600;
}

.Blog-box .sidebar .recent-post .post-info small {
    font-size: 14px;
    color: #7E7E7E;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: start;
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    color: var(--black-color);
}

.pagination li a {
    color: var(--black-color);
}

ul.categories-list li a {
    text-decoration: none;
    line-height: 2;
    color: var(--black-color);
}

/* Quality & Trust Section */
.quality-trust {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.quality-trust img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(50%);
}

.quality-trust-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: var(--white-color);
}

.quality-trust-content h6 {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 18px;
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.quality-trust-content h2 {
    font-size: 42px;
    color: var(--white-color);
    padding-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Contact */

.contact .form-control {
    border: none;
    border-bottom: 1px solid #86898C;
    border-radius: 0;
    box-shadow: none;
}

.contact .form-control:focus {
    border-color: #86898C;
    box-shadow: none;
}

.btn-send {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* .main-footer {
    display: none;
} */
#ib2a {
    width: 100% !important;
    padding: 0 !important;
}

#ivrac {
    border: 1px solid #fff !important;
    padding: 9px 20px !important;
    width: max-content !important;
}

#esfpx_email_bce83274f66ad {

    background: transparent !important;
    border: 1px solid white !important;
    color: #ffffff !important;
}

#esfpx_email_bce83274f66ad {
    width: 200px;
    padding: 8px !important;
}

#imc2g,
#i9kxP,
#i9kx {
    text-align: left !important;
}

.air-conditioning .air-conditioning-content p:last-child {
    display: flex;
}

.why-choose-us img {
    height: 100%;
}

.blog-content a {
    color: black;
    text-decoration: none;
}

.wpcf7-list-item {
    margin: 0 0 1em !important;
}

.contact-info {
    margin-top: 20px;

}

.blog-head li {
    color: var(--white-color) !important;
}

.air-conditioning-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.air-conditioning-content img {
    max-width: 100%;
    height: 400px;
    object-fit: none;
}

.card img {
    width: 100%;
    height: 300px;
}

.post-navigation {
    width: 40%;
}

@media (max-width: 991px) {

    .navbar-collapse {
        display: flex;
        justify-content: LEFT;
        flex-direction: column;
        align-items: flex-start;
    }

    .right-menus {
        padding: 0;
    }

    #carouselVandykeautomotive .carousel-caption h2 {
        font-size: 30px;

    }

    #carouselVandykeautomotive .carousel-caption h5 {
        font-size: 40px;
    }

    .what-we-do .fullservice-images {
        margin-top: 60px;
    }

    .author-storyteller .author-storyteller-images {
        margin-bottom: 90px;
    }

    .blog-item {
        margin-bottom: 40px;
    }

    .blogs .btn-viewall {
        margin: 0PX;
    }

    .author-storyteller {
        padding: 60px 0px;
    }

    form[data-form-id="2"] .es-form-field-container .gjs-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .about-counter .counter-number {
        font-size: 52px;
    }

    .about-counter .counter-label {
        font-size: 14px;
    }

    .our-core-values .card:first-child {
        margin-top: 25px;
    }

    .why-choose-us img {
        width: 100%;
        height: 400px;
        object-fit: none;
    }

    .quality-trust-content h2 {
        font-size: 32px;
    }

    .contact-section {
        margin-top: 40px;
    }

    #carouselVandykeautomotive .carousel-indicators {
        display: none;
    }

    #carouselVandykeautomotive .carousel-caption {
        top: 40%;
    }

    .air-conditioning .air-conditioning-content li img {
        display: none !important;
    }

    .air-conditioning .air-conditioning-content li {
        list-style: disc;

    }

    .air-conditioning .air-conditioning-content p {
        font-size: 14px;
    }

}

@media (max-width: 767px) {

    .author-storyteller h2,
    .what-we-do h2,
    .blogs h2,
    .our-testimonials h2,
    .faqs .faq-header h2,
    .our-services h2,
    .our-latest .latest-content h2 {
        font-size: 28px;
    }

    .what-we-do .fullservice-images img:last-child {
        left: 0;
    }

    .our-services h2 {
        margin-bottom: 1rem !important;
    }

    .our-latest {
        padding: 40px 0px;
    }

    .author-storyteller .author-storyteller-images img:first-child {
        width: 100%;
    }

    #carouselVandykeautomotive {
        height: 500px;
    }

    #carouselVandykeautomotive .carousel-item {
        height: 100%;
    }

    #carouselVandykeautomotive .carousel-item img {
        height: 500px;
        width: 100%;
        object-fit: cover;
    }

    #carouselVandykeautomotive .carousel-caption {
        width: 80%;
        top: 50%;
    }

    #ib2a {
        width: 250px !important;
        padding: 0 !important;
    }

    #carouselVandykeautomotive .carousel-indicators {
        display: none;
    }

    .air-conditioning .air-conditioning-content p:last-child {
        flex-direction: column;
        gap: 20px;
    }

    .quality-trust-content h2 {
        font-size: 32px;
    }

    .our-testimonials .profile-item img {
        margin-left: 20px;
    }

    .search-form-wrap {
        right: 10px !important;
    }

    .sidebar {
        padding-right: 25px !important;
        padding-left: 25px !important;
    }

    .quality-trust img {
        height: 300px;
    }

    #readmore-descri.expanded {
        max-height: max-content !important;
    }

    .Blog-box {
        overflow: hidden;
    }

    .post-navigation {
        width: 80% !important;
    }

    .search-form-wrap {
        right: -30px !important;
        transform: translate(-10%, -10px) !important;
    }

    .search-form-wrap.active {
        WIDTH: 95%;
    }

    #ivrac {
        padding: 6px 11px !important;
    }

    .main-footer .col-md-2 {
        width: 50%;
    }

}

#wpcf7-f645-o1 .wpcf7-submit:focus {
    border-color: #e63946 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgb(230 57 70) !important;
    color: #e63946 !important;
}

.full-service h3 {
    color: var(--white-color);
}

#readmore-descri ul {
    font-size: 14px;
}

.search-no-results #site-content,
.search-results #site-content,
.admin-bar #main-content-sec,
.category .container:nth-child(2),
.tag .container:nth-child(2) {
    min-height: 60vh;
    margin-top: 3rem;
}

#ivrac {
    font-weight: 400 !important;
    padding: 9px 11px !important;
    font-size: 14px;
}

#wpcf7-f645-o1 .wpcf7-submit {
    opacity: 100% !important;
}

.wpcf7-form-control .wpcf7-submit {
    color: var(--white-color) !important;
}