@import url('https://fonts.googleapis.com/css2?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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
}
img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
ul {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

p {
    font-size: 16px;
}

:root {
    --c1: #1a191d; /* Black */
    --c2: #dc0000; /* Orenge */
    --c3: #ebe9e994; /* backcolor */
}

.grey-back{
	background:var(--c3) !important;
}
.white-back{
	background: white;
}
.spacer {
    padding: 120px 0px;
}
.spacer-bottom{
    padding-bottom: 120px;
}

/* Header */
.mobile-menu {
    position: fixed;
    width: 50%;
    background: white;
    height: 100vh;
    left: -120%;
    top: 0px;
    z-index: 99999;
    padding: 130px 20px 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: .8s all;
	overflow-y:auto;
}
span.dropdown-icon {
    display: none;
}

.mobile-menu .header-logo a img {
    transform: unset;
    height: 150px;
}

.mobile-menu .navbar ul {
    display: block;
    margin-top: 30px;
}

.mobile-menu .navbar {
    justify-content: start;
}

.mobile-menu .navbar ul li {
    padding: 0px 0px 25px;
}


.mobile-menu .navbar ul li a {
    font-size: 20px;
}

.close-menu i {
    width: 50px;
    height: 50px;
    background: var(--c2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 100px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.mobile-menu.active {
    left: 0px;
}

.top-header-links ul,
.top-header-social ul {
    display: flex;
    gap: 16px;
}

.top-header-social ul {
    justify-content: end;
}

.top-header .row {padding: 10px;background: white;border-radius: 600px;margin-bottom: 16px;z-index: 9;
    position: relative;}

.top-header-links ul li a,
.top-header-social ul li a {
    color: var(--c1);
    font-size: 15px;
    transition: 0.3s all;
}
li.li-style {
    color: #dedede;
}

.top-header-links ul li a i,
.top-header-social ul li a i {
    color: var(--c2);
    padding-right: 4px;
}

.navbar ul {
    display: flex;
    gap: 40px;
}

.navbar>ul>li {
    padding: 30px 0px;
    position: relative;
}
.navbar nav ul li {
    padding: 20px 0px 20px;
}

.navbar nav ul li ul.sub-menu li {
    padding: 0px;
}

.navbar ul li a:hover, .navbar ul li a:hover .navbar ul li::before {
    color: var(--c2);
}

.navbar nav ul li.current-menu-item a {
    color: var(--c2);
}
.navbar nav ul li.current-menu-item.menu-item-has-children ul.sub-menu li a {
    color: black !important;
}
.navbar ul li a {
    color: var(--c1);
    font-size: 17px;
    transition: 0.3s all;
    position: relative;
}
.navbar nav ul li.menu-item-has-children a::before {
    content: "\f107";
    position: absolute;
    right: -18px;
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
}
.top-header-links ul li a:hover,
.top-header-social ul li a:hover {
    color: var(--c2);
}

.navbar>ul>li>a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--c2);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s all;
    bottom: -2px;
}

.navbar>ul>li>a:hover::before {
    width: 100%;
}

.primary-btn a {
    background: var(--c2);
    color: white;
    padding: 15px 30px;
    font-size: 15px;
    transition: 0.3s all;
    text-align: center;
    border: 1px solid var(--c2);
    border-radius: 500px;
}
.navbar ul li a.active::before {
    width: 100%;
}

ul.sub-menu {
    position: absolute;
    width: 220px;
    background: white;
    z-index: 9;
    display: block;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    top: 100px;
    border-top: 2px solid var(--c2);
    visibility: hidden;
    opacity: 0;
    transition: .4s all;
}

ul.sub-menu li a {
    padding: 15px;
    border-bottom: 1px solid #e9e8e8;
    width: 100%;
    font-size: 16px;
    position: relative;
}

ul.sub-menu li a:last-child {border: unset;}

ul.sub-menu li a::before {
    content: "" !important;
    position: absolute;
    width: 5px;
    background: transparent;
    height: 100%;
    left: 0px;
    top: 0px;
    transition: .3s all;
}

ul.sub-menu li a:hover::before {
    background: var(--c2);
}

ul.sub-menu li a:hover {padding-left: 20px;}

.navbar ul li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 71px;
}
.navbar ul li a i {
    transform: translateY(2px);
    padding-left: 5px;
}
.primary-btn a i {
    padding-right: 2px;
}
.primary-btn a i {
    transform: translateY(1px);
    margin-left: 3px;
    font-size: 14px;
}
.primary-btn a:hover {
    background: transparent;
    color: var(--c2);
}
.header-logo a img {height: 70px;width: unset;transform: scale(2);border-radius: 200px;px; */}

.navbar {
    justify-content: center;
    padding: 0px;
}
.single-post .main-header {border-bottom: 1px solid #dedede;}

/* Home-Banner */

.banner-item {
    position: relative;
    display: flex !important;
    align-items: center;
    color: white;
    text-align: center;
    padding: 100px 0px 0px;
    height: 900px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    right: 0px;
    top: 0px;
    z-index: -1;
    object-fit: cover;
    er; */
    position: absolute;
    object-position: top;
    position: absolute;
}

.banner-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000006b;
    left: 0px;
    top: 0px;
}

.Banner-item-content {
    position: relative;
    text-align: left;
    width: 70%;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    background: #ffffff;
    width: 55px;
    height: 55px;
    border: 0px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--c2);
    z-index: 9;
    border: 1px solid white;
    transition: 0.4s all;
}

.slick-next {
    right: 15px;
    left: unset;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

ul.slick-dots li button {
    font-size: 0px;
    width: 18px;
    background: white;
    height: 3px;
    border: 0px;
    transition: 0.4s all;
}

ul.slick-dots li.slick-active button {
    background: var(--c2);
    width: 30px;
}

.Box-content h5 {
    font-size: 24px;
}

.Box-content h1 {
    font-size: 75px;
    font-weight: 600;
    line-height: 78px;
    padding-top: 6px;
}
.Box-content.Banner-item-content h2{
	font-size: 75px;
    font-weight: 600;
    line-height: 78px;
    padding-top: 6px;
	color:white;
}

.Banner-buttons {
    display: flex;
    gap: 18px;
}

.Box-content p {
    padding-top: 13px;
}

.primary-btn {
    margin-top: 40px;
}



.main-header .primary-btn {
    margin: 0px;
	text-align:end;
}

.second-primary-btn a {
    background: transparent;
}

.second-primary-btn a:hover {
    background: var(--c2);
    color: white;
}

.Banner-buttons .primary-btn a:hover {
    color: white;
}

.slick-arrow:hover {
    background: transparent;
    border: 1px solid var(--c2);
    color: white;
}
.Banner-main .slick-list.draggable {
    padding: 0;
}

/* Services */

.Services-btn {
}
section.Services.spacer {
    padding: 100px 0px;
    position: relative;
}

.Section-sub-title {
    position: relative;
    width: fit-content;
    margin: 0 auto 20px;
}
.Section-title h1 {
    font-size: 50px;
    font-weight: 600;
}

.page-id-10 section.Services .Section-title {
    margin: 0px;
}

.Section-sub-title h4 {
    font-size: 18px;
    font-weight: 600;
    }

.Section-title p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lines .line {
    width: 40px;
    background: var(--c2);
    height: 2px;
    position: relative;
}

.lines {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.lines .line:nth-child(2) {
    width: 20px;
    margin-top: 5px;
}

.lines.Right-lines {
    left: unset;
    right: -50px;
}

.lines.Left-lines .line:nth-child(2) {
    left: 20px;
}
.Section-title {
    text-align: center;
    margin: 0px 0px 80px;
}

.Section-title h2 {
    font-size: 55px;
    font-weight: 600;
    color: var(--c1);
    position: relative;
    margin-bottom: 40px;
}
.Section-title h2 span {
    color: var(--c2);
}

.Services-box {
    padding: 10px;
    border: 1px solid #c7c7c7;
    transition: .3s all;
    border-radius: 10px;
                  /* Use Flexbox */
         /* Align divs vertically */
     /* Space divs evenly */
            /* Center the items horizontally */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures proper spacing between items */
    min-height: 100%;
}

.Services-box-img img {
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
}

.Services-box-content {flex-grow: 1;}

.Services-btn a {
    font-size: 17px;
    color: var(--c2);
    transition: .3s all;
    border-bottom: 1px solid;
    margin: 20px 0px 20px;
}

.Services-btn a:hover {
}

.Services-box:hover {
    transform: translateY(-8px);
    border: 1px solid var(--c2);
}
.Services-box-content h2 {
    font-size: 22px;
    color: Var(--c1);
    font-weight: 600;
    line-height: 30px;
    padding: 20px 0px 10px;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

.tabs button {
    padding: 13px 35px;
    border: none;
    cursor: pointer;
    transition: .3s all;
    border-radius:500px;
    background: unset;
}

.tabs button:hover {
    background-color: var(--c2);
    color: white;
}

.tabs button.active {
    background-color: var(--c2);
    color: white;
}
.tabs {
    text-align: center;
    margin: 50px auto 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: fit-content;
    border-radius: 500px;
}


/* About-Us */

.Box-content .Section-sub-title {
    margin: 0px 0px 15px 50px;
}
.page-id-29 .About-us {
    background: unset;
}

.Box-content h2 {
    font-size: 55px;
    font-weight: 600;
    line-height: 60px;
    color: var(--c1);
}
.About-us-box span.extra-span {
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
}

.Box-content.Banner-item-content p {
    font-size: 18px;
}

.About-us-box-checks ul {
    margin-top: 20px;
}
.About-us-box-checks h3 {
    font-size: 27px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--c1);
}
.About-us-box-checks ul li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.About-us-box-checks ul li i {
    color: var(--c2);
    padding-right: 7px;
}

.About-us-box-checks ul li:last-child {
    margin: 0px;
}

.About-us-box-img img {
    height: 600px;
    object-fit: cover;
}
/* CTA */
.CTA{
	background-image:url(/wp-content/uploads/2025/05/Universal-Tyres-Autos-Compnay-Adeliede-CTA-img.jpg);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-attachment: fixed;
}
.CTA::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000080;
    top: 0px;
    left: 0px;
}

.CTA-main {
    position: relative;
}

.CTA-main .primary-btn {
    /* margin: 0px; */
    /* text-align: end; */
}
.CTA-main .Box-content h2 {
    color: white;
}
.CTA-main .Box-content {
    color: white;
    background: unset;
    padding: unset;
    box-shadow: unset;
    text-align: center;
}
.CTA-main .primary-btn a:hover {
    color: white;
}

/* Why-US */

.why-us-box img {
    margin: 0 auto;
    width: unset;
}

.why-us-b0x-text {
    text-align: center;
}

.why-us-b0x-text h2 {
    font-size: 30px;
    padding: 20px 0px 20px;
}
.why-us-b0x-text p {
    font-size: 15px;
}
.border-r {
    border-right: 1px solid var(--c2);
}
.border-l {
    border-left: 1px solid var(--c2);
}
.why-us-b0x-text ul {
    padding-top: 15px;
}

.why-us-b0x-text ul li {
    font-size: 15px;
    padding-bottom: 6px;
    font-weight: 600;
}

.why-us-b0x-text ul li i {
    color: var(--c2);
    padding-right: 6px;
}
.why-us-main {
    margin-top: 80px;
}

/* Contact */
.contact-details span {
    display: block;
}
.contact-details h5 {
    font-size: 17px;
}

.contact-address ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.contact-address ul li {
    font-size: 15px;
    font-weight: 500;
}

.contact-address ul li.locations-li-style {
    color: var(--c2);
}

.contact-address.contact-box {
    align-items: flex-start;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-box i {
    color: white;
    font-size: 26px;
    color: var(--c2);
}

.contact-box span {
    font-size: 15px;
    font-weight: 500;
}
.contact-box:first-child {
    margin: 0px;
}

.contact-number.contact-box {}

.contact-details {
    margin-top: 30px;
}

.contact-box span a {
    color: var(--c2););
    text-decoration: underline;
}

.contact-box span a:hover {
    text-decoration: auto;
}
.contact-form {
    padding: 40px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: white;
}

div#frm_form_1_container input, div#frm_form_1_container textarea {
    border-radius: 0px;
}

div#frm_form_1_container fieldset {
    padding: 0px;
}

#frm_field_6_container {
    margin: 0px;
}

div#frm_form_1_container .frm_button_submit {
    margin-bottom: 0px;
    background: var(--c2);
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    transition: 0.3s all;
    text-align: center;
    border: 1px solid var(--c2);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 4px;
}

div#frm_form_1_container .frm_button_submit:hover {
    background: transparent;
    color: black;
}
.map-box {
    margin-top: 100px;
}
/* Footer */

footer {
    background: #f1f1f1;
    position: relative;
    overflow: hidden;
}
.footer-main {
    padding: 80px 0px;
    position: relative;
}
.footer-logo img {
    width: 230px;
    margin-bottom: 20px;
}
.footer-box h5 {
    padding-bottom: 20px;
    font-size: 26px;
    position: relative;
    width: fit-content;
    color: black;
}
.footer-box ul li {
    padding-bottom: 7px;
}
.footer-bottom {
    border-top: 1px solid black;
}



.footer-box .primary-btn a:hover {
    color: white;
}

.footer-box h5::before {
    content: "";
    position: absolute;
    width: 25%;
    height: 2px;
    background: var(--c2);
    bottom: 10px;
    left: 0px;
}

.footer-box .primary-btn a {
    padding: 15px 30px;
    font-size: 16px;
}

ul.list-unstyled {
    margin-top: 20px;
}
.footer-shape-1 img {
    width: 550px;
    position: absolute;
    left: 0px;
    top: -60px;
}

.footer-shape-2 img {
    width: 530px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.footer-box-2 {
    padding-left: 50px;
}

.footer-box ul li a {transition: .3s all;color: #000000;}

.footer-box ul li a:hover {
    padding-left: 7px;
    color: var(--c2);
}
.footer-box.news-letter p {
    margin-top: 20px;
}
div#frm_form_2_container .form-field {
    margin: 0px;
}

div#frm_form_2_container fieldset {
    padding: 0px;
}

#frm_form_2_container button.frm_button_submit {
    margin: 15px 0px 0px;
    background: var(--c2);
    width: 100%;
    box-shadow: unset;
    border: 1px solid var(--c2);
    border-radius: 4px;
    font-size: 18px;
    transition: .3s all;
    height: 45px;
    line-height: 0px;
}

#frm_form_2_container button.frm_button_submit:hover {
    background: transparent;
}

#frm_form_2_container input {
    border-radius: 4px;
    height: 42px;
}

/* Inner-banner */

.Inner-banner {
    background-image: url(/wp-content/uploads/2025/03/auto-engine-mechanic-in-adelaide.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    position: relative;
    padding: 210px 0px 80px;
}
.Inner-banner .Box-content {
    text-align: left;
    color: white;
    position: relative;
    background: unset;
    box-shadow: unset;
    padding: unset;
    width: 70%;
}

.Inner-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000094;
    left: 0px;
    top: 0px;
}

.Inner-banner-btn ul {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.Inner-banner-btn ul li a {color: white;}

.Inner-banner-btn ul li {
    font-size: 20px;
}

.Inner-banner-btn ul li:nth-child(3) {
    color: var(--c2);
}

.Inner-banner-btn {
    margin-top: 30px;
}

/* About-us-sec */

.A-S-item-title img {
    width: unset;
}

.A-S-item-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.A-S-item-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--c1);
}

.about-slider-item {
    padding: 20px 20px 40px 20px;
    background: white;
    border: 1px solid #d9d5d5;
    border-radius: 4px;
    margin-top: 30px;
}

.slick-list.draggable {
    padding: 10px 0px;
}

.about-slider-item p {
    font-size: 15px;
    margin-top: 20px;
    border-top: 1px solid var(--c2);
    padding-top: 20px;
}
.A-S-item-title-img {
    background: var(--c2);
    padding: 16px;
    border-radius: 4px;
}

.about-slider-main ul.slick-dots {
    left: 50px;
    bottom: 20px;
}

.about-slider-main ul.slick-dots li button {
    background: #c1bebe;
}

.about-slider-main ul.slick-dots li.slick-active button {
    background: var(--c2);
}

/* Counter */

.counter-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.counter-box {
    background: #fff;
    text-align: center;
    border-radius: 4px;
    width: 250px;
    border: 3px solid var(--c2);
    position: relative;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.icon {
}

.counter span {font-size: 45px;font-weight: 500;}
.counter-box::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 12%;
    left: -3px;
    top: -3px;
    border-top: 3px solid var(--c2);
    border-left: 3px solid var(--c2);
}

.counter-box::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 12%;
    right: -3px;
    bottom: -3px;
    border-right: 3px solid var(--c2);
    border-bottom: 3px solid var(--c2);
}

section.counter-section .container {}
span.count-plus {
    color: var(--c2);
}
.counter-box i {
    font-size: 40px;
}
/* Accourdion */
.title-icon img {
    width: unset;
}

.title-icon {
    background: var(--c2);
    padding: 16px;
    border-radius: 4px;
}

.accordions .Section-title h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.accordion-button:not(.collapsed) {
    background: var(--c1);
    color: white;
}

.accordion-button {
    padding: 10px 20px;
    font-weight: 500;
}

.accordion-button::after {
    background-image: unset;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    color: var(--c2);
    font-size: 32px;
    height: unset;
    width: unset;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}
.accordion-body {
    font-size: 15px;
}
div#accordionExample {
    width: 90%;
    margin: 0 auto;
}

/* Benfits */

.benefits-box img {
    width: unset;
    margin: 0 auto 30px;
}

.benefits-box {
    padding: 20px;
    text-align: center;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.benefits-box h3 {
    font-size: 28px;
    padding-bottom: 10px;
}

section.benefits {
    padding: 60px 0px 0px;
}

/* Standard-services */

.standard-services-box {
    padding: 20px;
    background: white;
    height: 100%;
    border-radius: 10px;
    border: 1px solid var(--c2);
    text-align: center;
}

.standard-services-box i {
    display: block;
    font-size: 40px;
}

.standard-services-box a {
    font-size: 22px;
    margin: 20px 0px 10px;
    color: var(--c2);
    font-weight: 600;
    text-decoration: underline;
}

.standard-services-box a:hover {
    text-decoration: auto;
}
/* CEO-profile */
.CEO-profile img {width: 60px;}

.CEO-signature img {
    width: unset;
}

.CEO-profile-main {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-top: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.CEO-details h3 {
    font-size: 21px;
}

.CEO-details h5 {
    font-size: 16px;
    color: #9f9b9b;
    font-weight: 400;
    margin-top: 4px;
}

/* Advantages */



/* term-crash-repair-services */

	
/* Popup overlay styling */
#popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 68%); /* Black shadow */
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Popup box styling with animation */
#popup {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    background-color: transparent;
    transform: scale(0); /* Start scaled down */
    transition: transform 0.4s ease; /* Smooth transition */
}

/* Scale up the popup when visible */
#popup-overlay.show #popup {
    transform: scale(1); /* Scale to full size */
}

#popup img {
    width: 600px;
    height: 600px;
}

/* Close button styling */
#popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 27px;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

/* blogs */

.blog-item img {
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-content {
    padding: 20px 0px 0px;
}

.blog-date span {
    color: #787474;
    font-weight: 400;
}

.blog-title a {
    color: var(--c1);
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 5px;
    line-height: 37px;
}

.blog-content p {
    font-size: 15px;
	display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content .primary-btn a {
    padding: 12px 20px;
    font-size: 16px;
}

.blog-content .primary-btn {
    margin-top: 25px;
}
.blog-item {
    margin-bottom: 20px;
}
section.post-details img {
    height:550px;
	object-fit:contain;
    margin-top: 20px;
}

.post-categories {
    margin-top: 20px;
}

.post-body p {
    margin-top: 20px;
}

.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 {
    margin-top: 20px;
}
.About-us-box .Box-content h1 {
    font-size: 55px;
    line-height: 55px;
}
.why-us-bottom .primary-btn {
    margin-top: 20px;
}

.why-us-bottom p {
    margin-top: 20px;
}
span.post-date {
    padding-top: 10px;
    display: block;
}
    

    .car-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .car-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .car-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #ddd;
    }

    .car-caption {
      padding: 15px;
      text-align: center;
      font-size: 1rem;
      color: #555;
    }
.car-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d9230f;
  color: #fff;
  padding: 8px 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

section.used-cars-section .Section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

section.used-cars-section .Section-title .primary-btn {
    margin: 0px;
}
header.header {
    position: absolute;
    top: 10px;
    z-index: 9;
    width: 100%;
}

.main-header .row {
    background: white;
    padding: 5PX;
    border-radius: 500px;
}

.header-logo a {
    display: block;
}
.Section-title h2:before {
    width: 40%;
    height: 2px;
    background: var(--c2);
    position: absolute;
    bottom: -20px;
    content: "";
    left: 50%;
    transform: translateX(-50%);
}
.Services-box-content p {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;     /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.Box-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.Box-content.Banner-item-content {
    background: unset;
    padding: unset;
    box-shadow: unset;
}
.CTA-main .Section-sub-title {
    margin: 0 auto 20px;
}

.why-us-box {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    background: white;
}
.why-us-box i {
    color: var(--c2);
}
.Box-content.contact-box-main {
    padding: 0px;
    box-shadow: unset;
    border-radius: unset;
    background: transparent;
}

.benefits-box i {
    color: var(--c2);
}
.footer-box p {
    color: black;
}

.footer-bottom p {
    color: black;
}
.spacer-top {
    padding-top: 120px;
}
.vendors-slider div img {
    height: 170px;
    object-fit: contain;
    margin: 0px 20px;
}
section.vendors.spacer {
    padding: 50px 0px 50px;
}
.vendors-slider img.style-img {background: black;}
.single-post .header{
	position:unset;
}