.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


html,
body {
    height: 100%;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 15px;
    font-family: "Lato", sans-serif;
    color: #727171;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #ffffff;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
    margin-bottom: 75px;
    text-align: center;
}

.section-title span {
    font-size: 15px;
    color: #044aa4;
    font-weight: 700;
}

.section-title h2 {
    color: #353535;
    font-size: 40px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 16px;
}

.section-title P {
    margin-bottom: 0;
    font-size: 17px;
    color: #727171;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

/* buttons */

.primary-btn {
    display: inline-block;
    font-size: 15px;
    padding: 12px 24px;
    color: #ffffff;
    font-weight: 700;
    background: #044aa4;
    border-radius: 2px;
}

.site-btn {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    padding: 15px 35px 12px 38px;
    background: #044aa4;
    border: none;
    border-radius: 2px;
}

/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #ffffff;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

.spacial-controls {
    position: fixed;
    width: 111px;
    height: 91px;
    top: 0;
    right: 0;
    z-index: 999;
}

.spacial-controls .search-switch {
    display: block;
    height: 100%;
    padding-top: 30px;
    background: #323232;
    text-align: center;
    cursor: pointer;
}

.search-model {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffffff;
    z-index: 99999;
}

.search-model-form {
    padding: 0 15px;
}

.search-model-form input {
    width: 470px;
    font-size: 40px;
    border: none;
    border-bottom: 2px solid #ededed;
    background: 0 0;
    color: #999;
}

.search-close-switch {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 28px;
    line-height: 28px;
    top: 30px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*---------------------
  Header
-----------------------*/
/*==============================
  HEADER
==============================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(16px);
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Wrapper */

.header__wrapper {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.header__logo img {
    width: 125px;
    transition: 0.3s;
}

.header__logo img:hover {
    transform: scale(1.04);
}

/* Navigation */

.header__menu ul {
    margin: 0;
    padding: 0;
}

.header__menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 22px;
    position: relative;
}

/* Nav Links */

.header__menu ul li a {
    position: relative;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Hover Line */

.header__menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    transition: 0.4s ease;
}

.header__menu ul li:hover > a,
.header__menu ul li.active > a {
    color: #044aa4;
}

.header__menu ul li:hover > a::after,
.header__menu ul li.active > a::after {
    width: 100%;
}

/* Dropdown */

.header__menu ul li .dropdown {
    position: absolute;
    left: 0;
    top: 130%;
    width: 240px;
    background: rgba(11, 19, 36, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.header__menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 120%;
    transform: translateY(0);
}

.header__menu ul li .dropdown li {
    display: block;
    margin: 0;
}

.header__menu ul li .dropdown li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.75);
}

.header__menu ul li .dropdown li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 30px;
}

.header__menu ul li .dropdown li a::after {
    display: none;
}

/* Right Side */

.header__right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* CTA Button */

.header-btn {
    height: 48px;
    padding: 0 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(4, 74, 164, 0.22);
}

.header-btn:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(4, 74, 164, 0.3);
}

/* Mobile Toggle */

.menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

/*==============================
  MOBILE
==============================*/

@media only screen and (max-width: 991px) {

    .header__wrapper {
        height: 80px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-btn {
        display: none;
    }

    .header__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: #0b1324;
        padding: 30px;
        transition: all 0.4s ease;
        overflow-y: auto;
    }

    .header__menu.active {
        left: 0;
    }

    .header__menu ul li {
        display: block;
        margin: 0 0 10px;
    }

    .header__menu ul li a {
        display: block;
        color: #ffffff;
        padding: 14px 0;
    }

    .header__menu ul li a::after {
        display: none;
    }

    /* Mobile Dropdown */

    .header__menu ul li .dropdown {
        position: relative;
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        opacity: 1;
        visibility: visible;
        top: 0;
        transform: none;
        display: none;
        margin-top: 10px;
        border-radius: 14px;
        padding: 10px 0;
        box-shadow: none;
    }

    .header__menu ul li:hover .dropdown {
        top: 0;
    }

    .header__menu ul li .dropdown li a {
        padding: 12px 20px;
        color: rgba(255, 255, 255, 0.7);
    }

}

/**/
/* whatsapp */

.float {

    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    border: #fff solid 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.my-float {
    font-size: 26px;
}


/*---------------------
  Hero
-----------------------*/

.hero {
    padding: 140px 0;
    
}


.hero-main {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide {
    height: 100vh;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

.hero-slider .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 20;
}

.hero-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: block;
    margin: 5px;
}

.hero-slider .owl-dot.active span {
    background: #fff;
}


.hero__text {
    padding-top: 110px;
}

.hero__text .primary-btn {
    margin-right: 16px;
}

.hero__text .primary-btn img {
    position: relative;
    top: -2px;
}

.hero__text .primary-btn.more-btn {
    background: transparent;
    border: 1px solid #ffffff;
}

.hero__text__title {
    margin-bottom: 28px;
}

.hero__text__title span {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.hero__text__title h2 {
    font-size: 60px;
    color: #ffffff;
    font-weight: 700;
    margin-top: 10px;
}

.hero__text__price {
    position: relative;
    padding-left: 140px;
    margin-bottom: 55px;
}

.hero__text__price .car-model {
    font-size: 13px;
    color: #323232;
    font-weight: 700;
    display: inline-block;
    padding: 6px 14px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}

.hero__text__price h2 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    line-height: 45px;
}

.hero__text__price h2 span {
    font-size: 40px;
}

.hero__tab .nav-tabs {
    border-bottom: none;
}

.hero__tab .nav-tabs .nav-item {
    margin-bottom: 5px;
    margin-right: 5px;
}

.hero__tab .nav-tabs .nav-item .nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #323232;
    display: inline-block;
    padding: 7px 20px;
    border: none;
    border-radius: 2px;
    background: #ffffff;
}

.hero__tab .nav-tabs .nav-item .nav-link:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    left: 0;
    bottom: -7px;
    opacity: 0;
    background: #ffffff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.hero__tab .nav-tabs .nav-item .nav-link.active:after {
    opacity: 1;
    bottom: -7px;
}

.hero__tab__form {
    background: #ffffff;
    padding: 42px 40px 50px;
    border-radius: 2px;
}

.hero__tab__form h2 {
    color: #323232;
    font-weight: 700;
    margin-bottom: 22px;
}
 

/*---------------------
  Feature Cards
-----------------------*/

.feature .row {
    row-gap: 24px;
}

.feature__item {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 22px 30px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(4, 74, 164, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature__item::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    transition: 0.4s;
}

.feature__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(4, 74, 164, 0.15);
}

.feature__item:hover::before {
    transform: scale(1.2);
}

.feature__item__icon {
    position: relative;
    width: 95px;
    height: 95px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #044aa4 0%, #0d6efd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 24px rgba(4, 74, 164, 0.25),
        inset 0 2px 6px rgba(255, 255, 255, 0.25);
    transition: all 0.5s ease;
}

.feature__item__icon::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.feature__item:hover .feature__item__icon {
    transform: translateY(-5px) rotateY(180deg);
}

.feature__item__icon i {
    color: #ffffff;
    font-size: 38px;
    position: relative;
    z-index: 2;
}

.feature__item h6 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    line-height: 28px;
    margin: 0;
    padding: 0 6px;
}

/* Better Responsive Spacing */

@media only screen and (max-width: 767px) {

    .feature__item {
        padding: 30px 18px 25px;
        border-radius: 20px;
    }

    .feature__item__icon {
        width: 82px;
        height: 82px;
        margin-bottom: 18px;
    }

    .feature__item__icon i {
        font-size: 32px;
    }

    .feature__item h6 {
        font-size: 15px;
        line-height: 24px;
    }
}

/*---------------------
  Choose Us
-----------------------*/
/*==============================
  WHY CHOOSE AACAR - LIGHT THEME
==============================*/

.chooseus-section {
    position: relative;
    padding: 110px 0;
    background: #f8fafc;
    overflow: hidden;
}

/* Background Glow */

.chooseus-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    top: -220px;
    left: -160px;
    filter: blur(40px);
}

/* Content */

.chooseus-content {
    position: relative;
    z-index: 2;
}

/* Title */

.chooseus-content .section-title {
    text-align: left;
    margin-bottom: 50px;
}

.chooseus-content .section-title span {
    color: #044aa4;
    letter-spacing: 1px;
    font-weight: 700;
}

.chooseus-content .section-title h2 {
    color: #111827;
    line-height: 1.3;
    margin-bottom: 18px;
}

.chooseus-content .section-title p {
    color: #6b7280;
    line-height: 32px;
    max-width: 650px;
}

/* Grid */

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

/* Item */

.choose-item {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    overflow: hidden;
}

.choose-item::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    transition: 0.4s ease;
}

.choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(4, 74, 164, 0.08);
}

.choose-item:hover::before {
    transform: scale(1.15);
}

/* Icon */

.choose-icon {
    min-width: 68px;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(4, 74, 164, 0.18);
}

.choose-icon i {
    color: #ffffff;
    font-size: 28px;
}

/* Info */

.choose-info h5 {
    color: #111827;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-info p {
    color: #6b7280;
    line-height: 28px;
    margin-bottom: 0;
    font-size: 14px;
}

/* Button */

.choose-btn {
    height: 58px;
    padding: 0 34px;
    border-radius: 18px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 16px 34px rgba(4, 74, 164, 0.22);
}

.choose-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
    box-shadow: 0 24px 46px rgba(4, 74, 164, 0.3);
}

/* Right Image */

.choose-image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}

.choose-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    transition: 0.6s ease;
}

.choose-image:hover img {
    transform: scale(1.04);
}

/* Floating Card */

.floating-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 24px;
    border-radius: 24px;
    max-width: 240px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.floating-card h4 {
    font-size: 36px;
    color: #044aa4;
    font-weight: 700;
    margin-bottom: 10px;
}

.floating-card p {
    color: #6b7280;
    line-height: 28px;
    margin-bottom: 0;
}

/* Responsive */

@media only screen and (max-width: 991px) {

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

    .choose-image {
        margin-top: 45px;
    }

    .choose-image img {
        height: 500px;
    }

}

@media only screen and (max-width: 767px) {

    .chooseus-section {
        padding: 80px 0;
    }

    .choose-item {
        padding: 22px;
        border-radius: 22px;
        flex-direction: column;
    }

    .choose-image img {
        height: 420px;
    }

    .floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: unset;
    }

}


/*---------------------
  Cta
-----------------------*/
/*---------------------
  CTA Section
-----------------------*/

.cta {
    padding-bottom: 90px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* CTA Card */

.cta__item {
    position: relative;
    z-index: 1;
    padding: 50px 38px 55px;
    border-radius: 26px;
    margin-bottom: 30px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Overlay */

.cta__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 7, 13, 0.88),
            rgba(5, 7, 13, 0.18));
    z-index: -1;
    transition: 0.4s ease;
}

/* Extra Glow */

.cta__item::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(79, 141, 253, 0.12);
    border-radius: 50%;
    top: -100px;
    right: -80px;
    filter: blur(30px);
    transition: 0.5s ease;
    z-index: -1;
}

/* Hover */

.cta__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.cta__item:hover::before {
    background: linear-gradient(to top,
            rgba(4, 74, 164, 0.92),
            rgba(5, 7, 13, 0.22));
}

.cta__item:hover::after {
    transform: scale(1.2);
}

/* Content */

.cta__item h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 14px;
}

.cta__item p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    line-height: 30px;
    font-size: 15px;
}

/* Optional Button Styling */

.cta__item .primary-btn {
    margin-top: 28px;
    width: fit-content;
    background: #ffffff;
    color: #044aa4;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta__item .primary-btn:hover {
    background: #044aa4;
    color: #ffffff;
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .cta {
        padding-bottom: 70px;
    }

    .cta__item {
        padding: 40px 25px 45px;
        min-height: 240px;
        border-radius: 22px;
    }

    .cta__item h4 {
        font-size: 24px;
        line-height: 34px;
    }

}

/*---------------------
  Car
-----------------------*/

.car {
    padding-bottom: 120px;
}

.car .section-title {
    margin-bottom: 20px;
}

.car .section-title h2 {
    margin-bottom: 0;
}

.filter__controls {
    text-align: center;
    margin-bottom: 40px;
}

.filter__controls li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    color: #8d8d8d;
    font-weight: 700;
    margin-right: 50px;
    position: relative;
    padding: 4px 0;
    cursor: pointer;
}

.filter__controls li.active {
    color: #323232;
}

.filter__controls li.active:after {
    opacity: 1;
}

.filter__controls li:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #044aa4;
    content: "";
    opacity: 0;
}

.filter__controls li:last-child {
    margin-right: 0;
}

.car__filter__option {
    background: #f7f7f7;
    padding: 12px 30px;
    margin-bottom: 30px;
}

.car__filter__option .car__filter__option__item.car__filter__option__item--right {
    text-align: right;
}

.car__filter__option .car__filter__option__item h6 {
    font-size: 15px;
    color: #353535;
    font-weight: 700;
    display: inline-block;
    margin-right: 15px;
}

.car__filter__option .car__filter__option__item .nice-select {
    width: auto;
    font-size: 15px;
    color: #353535;
    padding-left: 20px;
    padding-right: 50px;
    border: 1px solid #ebebeb;
    height: 36px;
    background: #ffffff;
    line-height: 36px;
    border-radius: 0;
    float: none;
    display: inline-block;
}

.car__filter__option .car__filter__option__item .nice-select .list {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}

.car__filter__option .car__filter__option__item .nice-select:after {
    border-bottom: 1.5px solid #AAAAB3;
    border-right: 1.5px solid #AAAAB3;
    height: 7px;
    right: 22px;
    width: 7px;
}

.car__item {
    margin-bottom: 30px;
}

.car__item__pic__slider img {
    border-radius: 2px 2px 0 0;
}

.car__item__pic__slider.owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 15px;
}

.car__item__pic__slider.owl-carousel .owl-dots button {
    height: 8px;
    width: 8px;
    background: #8d8d8d;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.car__item__pic__slider.owl-carousel .owl-dots button.active {
    background: #ffffff;
}

.car__item__pic__slider.owl-carousel .owl-dots button:last-child {
    margin-right: 0;
}

.car__item__text {
    border: 1px solid #ebebeb;
}

.car__item__text__inner {
    padding: 20px 0 14px 20px;
}

.car__item__text__inner .label-date {
    display: inline-block;
    font-size: 13px;
    color: #323232;
    font-weight: 700;
    padding: 2px 15px 1px;
    border: 1px solid #ebebeb;
    border-radius: 2px;
}

.car__item__text__inner h5 {
    margin-top: 10px;
    margin-bottom: 14px;
}

.car__item__text__inner h5 a {
    color: #353535;
    font-weight: 700;
}

.car__item__text__inner ul li {
    list-style: none;
    font-size: 15px;
    color: #8d8d8d;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-right: 40px;
}

.car__item__text__inner ul li:after {
    position: absolute;
    right: -23px;
    top: 3px;
    height: 15px;
    width: 2px;
    background: #8d8d8d;
    content: "";
}

.car__item__text__inner ul li span {
    color: #323232;
}

.car__item__text__inner ul li:last-child {
    margin-right: 0;
}

.car__item__text__inner ul li:last-child:after {
    display: none;
}

.car__item__price {
    position: relative;
}

.car__item__price .car-option {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    background: #4971FF;
    display: inline-block;
    padding: 12px 22px 10px;
    border-radius: 2px 0 0 2px;
    position: absolute;
    left: 0;
    top: 0;
}

.car__item__price .car-option.sale {
    background: #044aa4;
}

.car__item__price h6 {
    font-size: 15px;
    color: #044aa4;
    font-weight: 700;
    border-top: 1px solid #ebebeb;
    padding-left: 120px;
    padding-top: 14px;
    padding-bottom: 11px;
}

.car__item__price h6 span {
    color: #727171;
    font-size: 13px;
    font-weight: 400;
}

.pagination__option {
    padding-top: 20px;
}

.pagination__option a {
    display: inline-block;
    height: 50px;
    width: 50px;
    font-size: 18px;
    color: #727171;
    font-weight: 700;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    line-height: 50px;
    text-align: center;
    margin-right: 6px;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.pagination__option a:hover,
.pagination__option a.active {
    border-color: #044aa4;
    color: #353535;
}

.pagination__option a:last-child {
    margin-right: 0;
}

.pagination__option a span {
    font-size: 18px;
    position: relative;
    top: 2px;
    font-weight: 700;
}

.car__sidebar {
    background: #f7f7f7;
    padding: 30px;
}

.car__search {
    margin-bottom: 40px;
}

.car__search h5 {
    font-size: 20px;
    color: #353535;
    font-weight: 700;
    margin-bottom: 15px;
}

.car__search form {
    position: relative;
}

.car__search form input {
    height: 46px;
    width: 100%;
    font-size: 15px;
    color: #727171;
    padding-left: 20px;
    border: 1px solid #ebebeb;
    background: #ffffff;
}

.car__search form input::-webkit-input-placeholder {
    color: #727171;
}

.car__search form input::-moz-placeholder {
    color: #727171;
}

.car__search form input:-ms-input-placeholder {
    color: #727171;
}

.car__search form input::-ms-input-placeholder {
    color: #727171;
}

.car__search form input::placeholder {
    color: #727171;
}

.car__search form button {
    font-size: 14px;
    color: #AAAAB3;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    height: 100%;
    padding: 0 15px;
}

.car__filter h5 {
    font-size: 20px;
    color: #353535;
    font-weight: 700;
    margin-bottom: 15px;
}

.car__filter form .nice-select {
    width: 100%;
    font-size: 15px;
    color: #727171;
    padding-left: 20px;
    border: 1px solid #ebebeb;
    height: 46px;
    background: #ffffff;
    line-height: 46px;
    border-radius: 0;
    margin-bottom: 10px;
    float: none;
}

.car__filter form .nice-select .list {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}

.car__filter form .nice-select:after {
    border-bottom: 1.5px solid #AAAAB3;
    border-right: 1.5px solid #AAAAB3;
    height: 7px;
    right: 22px;
    width: 7px;
}

.car__filter form .filter-price {
    margin-bottom: 30px;
    padding-top: 8px;
}

.car__filter form .filter-price p {
    color: #323232;
    margin-bottom: 5px;
    margin-bottom: 18px;
}

.car__filter form .filter-price .price-range-wrap {
    position: relative;
}

.car__filter form .filter-price .price-range-wrap .ui-widget-content {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 1px;
}

.car__filter form .filter-price .price-range-wrap .ui-slider-horizontal .ui-slider-handle {
    top: -5px;
    margin-left: -4px;
}

.car__filter form .filter-price .price-range-wrap .ui-slider .ui-slider-handle {
    width: 14px;
    height: 14px;
    background: #044aa4;
    border-radius: 50%;
    cursor: pointer;
}

.car__filter form .filter-price .price-range-wrap .ui-state-default,
.car__filter form .filter-price .price-range-wrap .ui-widget-content .ui-state-default,
.car__filter form .filter-price .price-range-wrap .ui-widget-header .ui-state-default,
.car__filter form .filter-price .price-range-wrap .ui-button,
.car__filter form .filter-price .price-range-wrap html .ui-button.ui-state-disabled:hover,
.car__filter form .filter-price .price-range-wrap html .ui-button.ui-state-disabled:active {
    border: none;
}

.car__filter form .filter-price .price-range-wrap .ui-slider .ui-slider-range {
    background: #044aa4;
}

.car__filter form .filter-price .price-input {
    position: absolute;
    left: 42px;
    top: -44px;
}

.car__filter form .filter-price .price-input input {
    font-size: 15px;
    color: #353535;
    font-weight: 700;
    border: none;
    width: 200px;
    background: transparent;
}

.car__filter form .car__filter__btn {
    text-align: center;
}

/*---------------------
  Footer
-----------------------*/
/*---------------------
  Footer
-----------------------*/

.footer {
    position: relative;
    background: linear-gradient(135deg, #05070d 0%, #0b1324 55%, #0d1f3a 100%);
    padding-top: 90px;
    padding-bottom: 35px;
    overflow: hidden;
}

/* Background Glow */

.footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(4, 74, 164, 0.08);
    border-radius: 50%;
    top: -180px;
    left: -120px;
    filter: blur(40px);
}

.footer::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
    right: -120px;
    bottom: -120px;
    filter: blur(40px);
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Contact Strip */

.footer__contact {
    padding-bottom: 55px;
    margin-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__contact__title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* Contact Buttons */

.footer__contact__option {
    text-align: right;
}

.footer__contact__option .option__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    font-weight: 600;
    padding: 15px 24px;
    margin-right: 14px;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(4, 74, 164, 0.18);
}

.footer__contact__option .option__item:last-child {
    margin-right: 0;
}

.footer__contact__option .option__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(4, 74, 164, 0.25);
}

.footer__contact__option .option__item.email {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.footer__contact__option .option__item.email i {
    color: #4f8dfd;
}

.footer__contact__option .option__item i {
    font-size: 15px;
}

/* About */

.footer__about {
    margin-bottom: 30px;
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__logo img {
    max-width: 180px;
}

.footer__about p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 30px;
    margin-bottom: 28px;
    font-size: 15px;
}

/* Social */

.footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer__social a {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(4, 74, 164, 0.28);
}

/* Copyright */

.footer__copyright__text {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0 !important;
    line-height: 28px;
}

.footer__copyright__text a {
    color: #4f8dfd;
    font-weight: 700;
    transition: 0.3s;
}

.footer__copyright__text a:hover {
    color: #ffffff;
}

.footer__copyright__text i {
    color: #ff4d5a;
}

/* Widgets */

.footer__widget,
.footer__brand {
    margin-bottom: 30px;
}

.footer__widget h5,
.footer__brand h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 20px;
    position: relative;
}

/* Small underline */

.footer__widget h5::after,
.footer__brand h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    border-radius: 50px;
}

/* Links */

.footer__widget ul,
.footer__brand ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer__widget ul li,
.footer__brand ul li {
    list-style: none;
}

.footer__widget ul li a,
.footer__brand ul li a {
    font-size: 15px;
    color: #ffffff;
    line-height: 38px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__widget ul li a:hover,
.footer__brand ul li a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.footer__widget ul li i,
.footer__brand ul li i {
    color: #4f8dfd;
    font-size: 12px;
}

/* Brand Columns */

.footer__brand {
    overflow: hidden;
}

.footer__brand ul {
    width: 50%;
    float: left;
}

/* Responsive */

@media only screen and (max-width: 991px) {

    .footer__contact__title {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer__contact__option {
        text-align: center;
    }

}

@media only screen and (max-width: 767px) {

    .footer {
        padding-top: 70px;
    }

    .footer__contact {
        margin-bottom: 50px;
    }

    .footer__contact__title h2 {
        font-size: 32px;
    }

    .footer__contact__option .option__item {
        margin-bottom: 15px;
    }

    .footer__brand ul {
        width: 100%;
        float: none;
    }

}





/* List */

.footer__brand ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer__brand ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

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

.footer__brand ul li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Icons */

.footer__brand ul li i {
    min-width: 28px;
    height: 28px;
    border-radius: 14px;
    background: linear-gradient(135deg,
            rgba(4, 74, 164, 0.22),
            rgba(13, 110, 253, 0.12));
    color: #4f8dfd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-top: 2px;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 141, 253, 0.12);
}

.footer__brand ul li:hover i {
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(4, 74, 164, 0.28);
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .footer__brand {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .footer__brand h5 {
        font-size: 20px;
    }

    .footer__brand ul li {
        font-size: 14px;
        line-height: 26px;
    }

}


/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
    padding: 70px 0 60px;
}

.breadcrumb-option.contact-breadcrumb {
    padding: 70px 0 260px;
}

.breadcrumb-option.contact-breadcrumb h2 {
    margin-bottom: 0;
}

.breadcrumb__text h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 46px;
    margin-bottom: 6px;
}

.breadcrumb__links a {
    font-size: 15px;
    color: #ffffff;
    margin-right: 18px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links a:after {
    position: absolute;
    right: -15px;
    top: 0;
    content: "";
    font-family: "FontAwesome";
}

.breadcrumb__links a i {
    color: #044aa4;
    margin-right: 5px;
}

.breadcrumb__links span {
    font-size: 15px;
    color: #727171;
    display: inline-block;
}

/*---------------------
  About
-----------------------*/
/*---------------------
  About Section
-----------------------*/

.about {
    position: relative;
    padding-bottom: 90px;
    background: #f8fafc;
    overflow: hidden;
}

/* Soft Background Glow */

.about::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    top: -180px;
    left: -120px;
    filter: blur(40px);
}

.about .container {
    position: relative;
    z-index: 2;
}

/* Section Title */

.section-title.about-title {
    margin-bottom: 55px;
}

.section-title.about-title span {
    color: #4f8dfd;
    letter-spacing: 1px;
}

.section-title.about-title h2 {
    line-height: 1.35;
    color: #111827;
    margin-bottom: 18px;
}

.section-title.about-title p {
    font-size: 17px;
    line-height: 32px;
    color: #6b7280;
    max-width: 850px;
    margin: 0 auto;
}

/* Feature Area */

.about__feature {
    padding-bottom: 70px;
}

/* Feature Card */

.about__feature__item {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    height: 100%;
}

/* Glow */

.about__feature__item::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(4, 74, 164, 0.05);
    border-radius: 50%;
    top: -90px;
    right: -90px;
    transition: 0.4s ease;
}

.about__feature__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.about__feature__item:hover::before {
    transform: scale(1.15);
}

/* Icon Circle */

.about__feature__item .icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 30px rgba(4, 74, 164, 0.22),
        inset 0 2px 6px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.about__feature__item:hover .icon {
    transform: rotateY(180deg) translateY(-4px);
}

.about__feature__item .icon i {
    color: #ffffff;
    font-size: 36px;
}

/* Heading */

.about__feature__item h5 {
    font-size: 22px;
    color: #111827;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Text */

.about__feature__item p {
    margin-bottom: 0;
    color: #6b7280;
    line-height: 30px;
    font-size: 15px;
}

/* About Image */

.about__pic {
    position: relative;
    margin-bottom: 60px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.about__pic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 7, 13, 0.2),
            rgba(5, 7, 13, 0.02));
}

.about__pic img {
    width: 100%;
    border-radius: 28px;
    transition: transform 0.6s ease;
}

.about__pic:hover img {
    transform: scale(1.04);
}

/* About Info Box */

.about__item {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 32px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: 100%;
}

.about__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
}

.about__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.about__item h5 {
    font-size: 22px;
    color: #111827;
    font-weight: 700;
    margin-bottom: 16px;
}

.about__item p {
    margin-bottom: 0;
    color: #6b7280;
    line-height: 30px;
    font-size: 15px;
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .about {
        padding-bottom: 70px;
    }

    .section-title.about-title h2 {
        line-height: 1.4;
    }

    .about__feature__item,
    .about__item {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .about__pic,
    .about__pic img {
        border-radius: 22px;
    }

}

/*---------------------
  Call
-----------------------*/
/*---------------------
  Call Section
-----------------------*/

.call__text {
    position: relative;
    z-index: 2;
}

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

.call__text .section-title span {
    color: #4f8dfd;
    letter-spacing: 1px;
}

.call__text .section-title h2 {
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.call__text .section-title p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 30px;
    font-size: 15px;
    max-width: 520px;
}

/* CTA Link */

.call__text a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.call__text a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    border-radius: 50px;
    transition: 0.3s ease;
}

.call__text a:hover {
    color: #4f8dfd;
}

.call__text a:hover::after {
    width: 60%;
}

/* Form Wrapper */

.call__form {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Glow */

.call__form::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(79, 141, 253, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(20px);
}

/* Inputs */

.call__form input,
.call__form textarea {
    width: 100%;
    height: 54px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0 20px;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.call__form textarea {
    height: 130px;
    padding-top: 16px;
    resize: none;
}

.call__form input::placeholder,
.call__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.call__form input:focus,
.call__form textarea:focus {
    border-color: rgba(79, 141, 253, 0.45);
    box-shadow: 0 0 0 4px rgba(79, 141, 253, 0.08);
    background: rgba(255, 255, 255, 0.1);
}

/* Nice Select */

.call__form .nice-select {
    float: none;
    width: 100%;
    height: 54px;
    line-height: 54px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding-left: 20px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.call__form .nice-select:hover,
.call__form .nice-select.open {
    border-color: rgba(79, 141, 253, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

.call__form .nice-select span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.call__form .nice-select .list {
    width: 100%;
    margin-top: 10px;
    border-radius: 18px;
    border: none;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.call__form .nice-select .option {
    line-height: 45px;
    min-height: 45px;
    font-size: 14px;
}

.call__form .nice-select .option:hover,
.call__form .nice-select .option.focus,
.call__form .nice-select .option.selected.focus {
    background: rgba(4, 74, 164, 0.08);
    color: #044aa4;
}

/* Arrow */

.call__form .nice-select::after {
    width: 9px;
    height: 9px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    right: 22px;
    margin-top: -6px;
}

/* Button */

.call__form button {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 12px 25px rgba(4, 74, 164, 0.25);
}

.call__form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(4, 74, 164, 0.35);
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .call__form {
        padding: 28px 22px;
        border-radius: 22px;
    }

}

/*---------------------
  Team
-----------------------*/

.team {
    padding-bottom: 70px;
}

.section-title.team-title {
    margin-bottom: 50px;
}

.team__item {
    margin-bottom: 30px;
}

.team__item__pic img {
    min-width: 100%;
    border-radius: 2px;
}

.team__item__text {
    padding-top: 20px;
    text-align: center;
}

.team__item__text h5 {
    font-size: 20px;
    color: #353535;
    font-weight: 700;
    margin-bottom: 5px;
}

.team__item__text span {
    font-size: 15px;
    color: #727171;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial {
    padding-top: 0;
}

.section-title.testimonial-title {
    margin-bottom: 40px;
    padding-top: 90px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial__slider.owl-carousel .col-lg-6 {
    max-width: 100%;
}

.testimonial__slider.owl-carousel .owl-stage-outer {
    padding-top: 30px;
    padding-bottom: 40px;
}

.testimonial__slider.owl-carousel .owl-nav button {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #f4f6f8;
    line-height: 50px;
    font-size: 30px;
    color: #353535;
    text-align: center;
    position: absolute;
    left: -85px;
    top: 50%;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}

.testimonial__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -85px;
}

.testimonial__slider.owl-carousel .owl-dots {
    text-align: center;
}

.testimonial__slider.owl-carousel .owl-dots button {
    height: 10px;
    width: 10px;
    background: #ebebeb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
    background: #044aa4;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
    margin-right: 0;
}

.testimonial__item {
    -webkit-box-shadow: 0px 6px 15px rgba(50, 15, 15, 0.05);
    box-shadow: 0px 6px 15px rgba(50, 15, 15, 0.05);
    padding: 40px 30px 65px 40px;
    border-radius: 5px;
}

.testimonial__item p {
    font-size: 20px;
    color: #353535;
    line-height: 32px;
    margin-bottom: 0;
}

.testimonial__item__author {
    overflow: hidden;
    margin-bottom: 22px;
}

.testimonial__item__author__pic {
    float: left;
    margin-right: 30px;
}

.testimonial__item__author__text {
    overflow: hidden;
    padding-top: 10px;
}

.testimonial__item__author__text .rating {
    margin-bottom: 5px;
}

.testimonial__item__author__text .rating i {
    font-size: 20px;
    color: #F9B944;
}

.testimonial__item__author__text h5 {
    font-size: 20px;
    color: #353535;
    font-weight: 700;
}

.testimonial__item__author__text h5 span {
    font-size: 15px;
    color: #727171;
    font-weight: 400;
}

/*---------------------
  Counter
-----------------------*/

.counter {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
    padding-top: 80px;
}

.counter:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    z-index: -1;
}

.counter__item {
    text-align: center;
    margin-bottom: 30px;
}

.counter__item h2 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
}

.counter__item strong {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    line-height: 72px;
}

.counter__item p {
    font-size: 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
    color: #ffffff;
}

/*---------------------
  Clients
-----------------------*/

.clients {
    padding-bottom: 70px;
}

.section-title.client-title {
    margin-bottom: 45px;
}

.client__item {
    border: 1px solid #ebebeb;
    margin-bottom: 30px;
    height: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*---------------------
  About
-----------------------*/

/*---------------------
  Services
-----------------------*/
/*---------------------
  Services Section
-----------------------*/

.services {
    background: #f8fafc;
}

.services__item {
    position: relative;
    text-align: center;
    padding: 45px 30px;
    background: #ffffff;
    border-radius: 18px;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 90%;
}

.services__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.services__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.services__icon i {
    font-size: 38px;
    color: #ffffff;
}

.services__item:hover .services__icon {
    transform: rotateY(180deg);
}

.services__item h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.services__item p {
    font-size: 15px;
    line-height: 28px;
    color: #6b7280;
    margin-bottom: 25px;
}

.services__item a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    border-radius: 50%;
    background: #f3f4f6;
    color: #044aa4;
    font-size: 16px;
    transition: all 0.3s ease;
}

.services__item:hover a {
    background: #044aa4;
    color: #ffffff;
}

/*---------------------
  Car Details
-----------------------*/

.car-details {
    padding-bottom: 70px;
}

.car__details__pic {
    margin-bottom: 50px;
}

.car__details__pic__large {
    margin-bottom: 20px;
}

.car__details__pic__large img {
    min-width: 100%;
}

.car-thumbs .ct img {
    cursor: pointer;
}

.car__details__tab .nav-tabs {
    border-bottom: none;
    background: #f7f7f7;
    padding: 0 30px;
}

.car__details__tab .nav-tabs .nav-item {
    display: inline-block;
    margin-right: 62px;
}

.car__details__tab .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.car__details__tab .nav-tabs .nav-item .nav-link {
    font-size: 20px;
    color: #707070;
    font-weight: 700;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 22px 0 16px;
    position: relative;
}

.car__details__tab .nav-tabs .nav-item .nav-link:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background: #044aa4;
    content: "";
    opacity: 0;
}

.car__details__tab .nav-tabs .nav-item .nav-link.active {
    background-color: transparent;
}

.car__details__tab .nav-tabs .nav-item .nav-link.active:after {
    opacity: 1;
}

.car__details__tab .tab-content {
    padding-top: 45px;
}

.car__details__tab__info {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.car__details__tab__info__item {
    margin-bottom: 30px;
}

.car__details__tab__info__item h5 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 6px;
}

.car__details__tab__info__item ul li {
    list-style: none;
    font-size: 15px;
    color: #707070;
    line-height: 36px;
}

.car__details__tab__info__item ul li i {
    color: #044aa4;
    margin-right: 8px;
    font-size: 10px;
}

.car__details__tab__feature__item {
    margin-bottom: 30px;
}

.car__details__tab__feature__item h5 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 6px;
}

.car__details__tab__feature__item ul li {
    list-style: none;
    font-size: 15px;
    color: #707070;
    line-height: 36px;
}

.car__details__tab__feature__item ul li i {
    color: #044aa4;
    margin-right: 8px;
    font-size: 10px;
}

.car__details__sidebar {
    padding: 25px 30px 20px;
    background: #f7f7f7;
}

.car__details__sidebar__model {
    margin-bottom: 5px;
}

.car__details__sidebar__model ul {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.car__details__sidebar__model ul li {
    list-style: none;
    font-size: 15px;
    color: #727171;
    line-height: 36px;
    overflow: hidden;
}

.car__details__sidebar__model ul li span {
    color: #353535;
    font-weight: 700;
    float: right;
}

.car__details__sidebar__model .primary-btn {
    display: block;
    text-align: center;
    border-radius: 0;
    padding: 12px 0 10px;
}

.car__details__sidebar__model .primary-btn i {
    margin-right: 5px;
}

.car__details__sidebar__model p {
    color: #353535;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 0;
}

.car__details__sidebar__payment ul {
    margin-bottom: 30px;
}

.car__details__sidebar__payment ul li {
    list-style: none;
    font-size: 15px;
    color: #727171;
    line-height: 36px;
    overflow: hidden;
}

.car__details__sidebar__payment ul li:last-child span {
    font-size: 20px;
}

.car__details__sidebar__payment ul li span {
    color: #353535;
    font-weight: 700;
    float: right;
}

.car__details__sidebar__payment .primary-btn {
    display: block;
    border-radius: 0;
    text-align: center;
    margin-bottom: 10px;
    padding: 12px 0 10px;
}

.car__details__sidebar__payment .primary-btn i {
    margin-right: 5px;
}

.car__details__sidebar__payment .primary-btn.sidebar-btn {
    background: #ffffff;
    color: #727171;
    border: 1px solid #ebebeb;
}

/*---------------------
  Latest Blog
-----------------------*/
/*---------------------
  Latest Blog Section
-----------------------*/

.latest {
    position: relative;
    padding-top: 160px;
    padding-bottom: 90px;
    background: #f8fafc;
    overflow: hidden;
}

/* Soft Background Glow */

.latest::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    filter: blur(40px);
}

.latest .section-title {
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

/* Blog Card */

.latest__blog__item {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.latest__blog__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

/* Image */

.latest__blog__item__pic {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.latest__blog__item__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.latest__blog__item:hover .latest__blog__item__pic img {
    transform: scale(1.06);
}

/* Overlay */

.latest__blog__item__pic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 7, 13, 0.75),
            rgba(5, 7, 13, 0.08));
}

/* Meta */

.latest__blog__item__pic ul {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 3;
    margin: 0;
    padding: 0;
}

.latest__blog__item__pic ul li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 18px;
    position: relative;
}

.latest__blog__item__pic ul li i {
    color: #4f8dfd;
}

.latest__blog__item__pic ul li::after {
    content: "";
    position: absolute;
    right: -11px;
    top: 4px;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

.latest__blog__item__pic ul li:last-child::after {
    display: none;
}

/* Content */

.latest__blog__item__text {
    padding: 30px;
}

.latest__blog__item__text h5 {
    font-size: 22px;
    color: #111827;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.latest__blog__item:hover .latest__blog__item__text h5 {
    color: #044aa4;
}

.latest__blog__item__text p {
    color: #6b7280;
    line-height: 30px;
    margin-bottom: 24px;
    font-size: 15px;
}

/* Read More Button */

.latest__blog__item__text a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #044aa4;
    transition: all 0.3s ease;
}

.latest__blog__item__text a i {
    transition: transform 0.3s ease;
}

.latest__blog__item__text a:hover {
    color: #0d6efd;
}

.latest__blog__item__text a:hover i {
    transform: translateX(5px);
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .latest {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .latest__blog__item__pic {
        height: 220px;
    }

    .latest__blog__item__text {
        padding: 24px;
    }

    .latest__blog__item__text h5 {
        font-size: 20px;
        line-height: 30px;
    }

}

/*---------------------
  Blog
-----------------------*/

.blog .pagination__option {
    padding-top: 10px;
}

.blog__item {
    margin-bottom: 35px;
}

.blog__item__pic {
    height: 220px;
    position: relative;
    border-radius: 2px;
}

.blog__item__pic ul {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 22px 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 2px 2px;
}

.blog__item__pic ul li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    color: #ffffff;
    margin-right: 28px;
    position: relative;
}

.blog__item__pic ul li:after {
    position: absolute;
    right: -19px;
    top: 1px;
    height: 17px;
    width: 1px;
    background: #ffffff;
    content: "";
}

.blog__item__pic ul li:last-child {
    margin-right: 0;
}

.blog__item__pic ul li:last-child:after {
    display: none;
}

.blog__item__text {
    padding-top: 28px;
}

.blog__item__text h5 {
    margin-bottom: 40px;
}

.blog__item__text h5 a {
    font-size: 20px;
    color: #323232;
    font-weight: 700;
}

.blog__item__text p {
    color: #8d8d8d;
    margin-bottom: 0;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar__search {
    position: relative;
    margin-bottom: 50px;
}

.blog__sidebar__search input {
    height: 50px;
    width: 100%;
    font-size: 15px;
    color: #8d8d8d;
    padding-left: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-radius: 0.5px;
}

.blog__sidebar__search input::-webkit-input-placeholder {
    color: #8d8d8d;
}

.blog__sidebar__search input::-moz-placeholder {
    color: #8d8d8d;
}

.blog__sidebar__search input:-ms-input-placeholder {
    color: #8d8d8d;
}

.blog__sidebar__search input::-ms-input-placeholder {
    color: #8d8d8d;
}

.blog__sidebar__search input::placeholder {
    color: #8d8d8d;
}

.blog__sidebar__search button {
    font-size: 16px;
    color: #353535;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    height: 100%;
    padding: 0 15px;
}

.blog__sidebar__feature {
    margin-bottom: 45px;
}

.blog__sidebar__feature h4 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 36px;
}

.blog__sidebar__feature__item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.blog__sidebar__feature__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.blog__sidebar__feature__item h6 {
    margin-bottom: 28px;
}

.blog__sidebar__feature__item h6 a {
    font-size: 15px;
    color: #353535;
    font-weight: 700;
}

.blog__sidebar__feature__item ul li {
    font-size: 13px;
    color: #8d8d8d;
    display: inline-block;
    list-style: none;
    margin-right: 22px;
    position: relative;
}

.blog__sidebar__feature__item ul li:after {
    position: absolute;
    right: -14px;
    top: 4px;
    height: 13px;
    width: 1px;
    background: #8d8d8d;
    content: "";
}

.blog__sidebar__feature__item ul li:last-child {
    margin-right: 0;
}

.blog__sidebar__feature__item ul li:last-child:after {
    display: none;
}

.blog__sidebar__categories {
    margin-bottom: 30px;
}

.blog__sidebar__categories h4 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog__sidebar__categories ul li {
    list-style: none;
    position: relative;
    padding-left: 10px;
}

.blog__sidebar__categories ul li:before {
    position: absolute;
    left: 0;
    top: 16px;
    height: 4px;
    width: 4px;
    background: #044aa4;
    content: "";
    border-radius: 50%;
}

.blog__sidebar__categories ul li a {
    font-size: 15px;
    color: #727171;
    line-height: 36px;
}

.blog__sidebar__tag {
    margin-bottom: 70px;
}

.blog__sidebar__tag h4 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog__sidebar__tag a {
    display: inline-block;
    font-size: 13px;
    color: #8d8d8d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 12px;
    position: relative;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.blog__sidebar__tag a:hover {
    color: #044aa4;
}

.blog__sidebar__tag a:after {
    position: absolute;
    right: -10px;
    top: 9px;
    height: 2px;
    width: 4px;
    background: #707070;
    content: "";
}

.blog__sidebar__newslatter h4 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog__sidebar__newslatter p {
    color: #8d8d8d;
    margin-bottom: 35px;
}

.blog__sidebar__newslatter form {
    position: relative;
}

.blog__sidebar__newslatter form input {
    width: 100%;
    height: 46px;
    font-size: 15px;
    color: #727171;
    padding-left: 20px;
    border-radius: 2px;
    padding-right: 10px;
    border: 1px solid #ebebeb;
}

.blog__sidebar__newslatter form button {
    font-size: 13px;
    color: #ffffff;
    background: #044aa4;
    font-weight: 700;
    display: inline-block;
    padding: 8px 20px 11px;
    position: absolute;
    right: 0;
    top: 4px;
    border: none;
    border-radius: 2px;
    margin-right: 4px;
}

/*---------------------
  Blog Hero
-----------------------*/

.blog-details-hero {
    padding-top: 80px;
    padding-bottom: 400px;
}

.blog__details__hero__text {
    text-align: center;
}

.blog__details__hero__text .label {
    font-size: 15px;
    color: #044aa4;
    font-weight: 700;
    text-transform: uppercase;
}

.blog__details__hero__text h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    line-height: 55px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.blog__details__hero__text ul li {
    list-style: none;
    font-size: 15px;
    color: #ffffff;
    display: inline-block;
    margin-right: 90px;
}

.blog__details__hero__text ul li span {
    display: inline-block;
    position: relative;
}

.blog__details__hero__text ul li span::after {
    position: absolute;
    right: -48px;
    top: 3px;
    height: 15px;
    width: 1px;
    background: #ffffff;
    content: "";
}

.blog__details__hero__text ul li:last-child {
    margin-right: 0;
}

.blog__details__hero__text ul li:last-child span::after {
    display: none;
}

.blog__details__hero__text ul li img {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin-right: 6px;
}

.blog__details__hero__text ul li i {
    color: #044aa4;
    margin-right: 2px;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
    margin-top: -360px;
    padding-top: 0;
    overflow: hidden;
}

.blog__details__pic {
    margin-bottom: 95px;
}

.blog__details__pic img {
    min-width: 100%;
}

.blog__details__text {
    margin-bottom: 30px;
}

.blog__details__text p {
    font-size: 17px;
    line-height: 30px;
}

.blog__details__text p:first-child {
    margin-bottom: 25px;
}

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

.blog__details__quote {
    padding: 0 60px;
    margin-bottom: 60px;
}

.blog__details__quote p {
    font-size: 20px;
    color: #353535;
    font-weight: 700;
    line-height: 35px;
    position: relative;
    padding-left: 34px;
    margin-bottom: 0;
}

.blog__details__quote p:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 94px;
    width: 3px;
    background: #044aa4;
    content: "";
}

.blog__details__desc {
    margin-bottom: 42px;
}

.blog__details__desc p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 0;
}

.blog__details__share {
    margin-right: -34px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog__details__share__item {
    display: inline-block;
    background: #37589C;
    border-radius: 2px;
    padding: 10px 10px 8px 16px;
    width: calc(25% - 34px);
    float: left;
    margin-right: 34px;
    margin-bottom: 20px;
}

.blog__details__share__item.twitter {
    background: #54ADF0;
}

.blog__details__share__item.google {
    background: #DC4C39;
}

.blog__details__share__item.linkedin {
    background: #0179B6;
}

.blog__details__share__item i {
    font-size: 18px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 15px;
    display: inline-block;
}

.blog__details__share__item span {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}

.blog__details__author {
    overflow: hidden;
    margin-bottom: 60px;
}

.blog__details__author__pic {
    float: left;
    margin-right: 40px;
}

.blog__details__author__pic img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.blog__details__author__text {
    overflow: hidden;
}

.blog__details__author__text h5 {
    font-size: 20px;
    color: #353535;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog__details__author__text p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 0;
}

.blog__details__btns {
    margin-bottom: 35px;
}

.blog__details__btns__item {
    display: block;
    border-radius: 2px;
    padding: 25px 20px 20px;
    margin-bottom: 20px;
}

.blog__details__btns__item h6 {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 26px;
}

.blog__details__btns__item ul li {
    font-size: 13px;
    color: #ffffff;
    display: inline-block;
    list-style: none;
    margin-right: 28px;
    position: relative;
}

.blog__details__btns__item ul li:after {
    position: absolute;
    right: -19px;
    top: 4px;
    height: 13px;
    width: 1px;
    background: #ffffff;
    content: "";
}

.blog__details__btns__item ul li:last-child {
    margin-right: 0;
}

.blog__details__btns__item ul li:last-child:after {
    display: none;
}

.blog__details__comment {
    margin-bottom: 60px;
}

.blog__details__comment h4 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 35px;
}

.blog__details__comment__item {
    overflow: hidden;
    margin-bottom: 30px;
}

.blog__details__comment__item.reply__comment {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 100px;
}

.blog__details__comment__item:last-child {
    margin-bottom: 0;
}

.blog__details__comment__item__pic {
    float: left;
    margin-right: 30px;
}

.blog__details__comment__item__pic img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.blog__details__comment__item__text {
    overflow: hidden;
}

.blog__details__comment__item__text h6 {
    font-size: 15px;
    color: #353535;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog__details__comment__item__text p {
    margin-bottom: 35px;
}

.blog__details__comment__item__text a {
    font-size: 15px;
    color: #353535;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 6px 20px 4px;
    margin-right: 6px;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.blog__details__comment__item__text a:hover {
    background: #044aa4;
    color: #ffffff;
}

.blog__details__comment__form h4 {
    color: #353535;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog__details__comment__form form .input-list {
    margin-right: -20px;
    overflow: hidden;
}

.blog__details__comment__form form .input-list-item {
    width: calc(33.33% - 20px);
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.blog__details__comment__form form .input-list-item p {
    color: #353535;
    margin-bottom: 5px;
}

.blog__details__comment__form form .input-list-item input {
    width: 100%;
    height: 46px;
    font-size: 15px;
    color: #353535;
    border-radius: 2px;
    padding-left: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog__details__comment__form form .input-desc {
    width: 100%;
    margin-bottom: 24px;
}

.blog__details__comment__form form .input-desc p {
    color: #353535;
    margin-bottom: 5px;
}

.blog__details__comment__form form .input-desc textarea {
    width: 100%;
    height: 140px;
    font-size: 15px;
    color: #353535;
    border-radius: 2px;
    padding-left: 20px;
    padding-top: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    resize: none;
}

/*---------------------
  Contact
-----------------------*/
/*---------------------
  Contact Section
-----------------------*/

.contact__text {
    position: relative;
    margin-bottom: 30px;
    z-index: 2;
}

/* Section Title */

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

.contact__text .section-title span {
    color: #4f8dfd;
    letter-spacing: 1px;
}

.contact__text .section-title h2 {
    color: #111827;
    line-height: 1.35;
    margin-bottom: 16px;
}

.contact__text .section-title p {
    color: #6b7280;
    line-height: 30px;
    font-size: 15px;
}

/* Contact Info List */

.contact__text ul {
    padding-left: 0;
    margin-bottom: 0;
}

.contact__text ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #111827;
    line-height: 32px;
    list-style: none;
    margin-bottom: 18px;
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact__text ul li:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* Label */

.contact__text ul li span {
    color: #044aa4;
    min-width: 90px;
    font-weight: 700;
    display: inline-block;
}

/* Optional Icon */

.contact__text ul li i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 10px 20px rgba(4, 74, 164, 0.2);
}

/* Form Box */

.contact__form {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Glow */

.contact__form::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

/* Inputs */

.contact__form form input,
.contact__form form textarea {
    width: 100%;
    font-size: 15px;
    color: #111827;
    border-radius: 18px;
    padding-left: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8fafc;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

/* Input */

.contact__form form input {
    height: 56px;
}

/* Textarea */

.contact__form form textarea {
    height: 140px;
    padding-top: 18px;
    resize: none;
}

/* Focus */

.contact__form form input:focus,
.contact__form form textarea:focus {
    border-color: rgba(4, 74, 164, 0.35);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(4, 74, 164, 0.06);
}

/* Placeholder */

.contact__form form input::placeholder,
.contact__form form textarea::placeholder {
    color: #9ca3af;
}

/* Button */

.contact__form .site-btn {
    width: 100%;
    height: 58px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 14px 28px rgba(4, 74, 164, 0.22);
}

.contact__form .site-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(4, 74, 164, 0.3);
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .contact__text ul li {
        padding: 16px 18px;
        border-radius: 16px;
        flex-direction: column;
        gap: 10px;
    }

    .contact__form {
        padding: 30px 22px;
        border-radius: 24px;
    }

}


/**/
/*==============================
  Contact Form
==============================*/

.php-email-form .form-group {
    margin-bottom: 22px;
}

/* Inputs */

.php-email-form input,
.php-email-form textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    border-radius: 18px;
    padding: 0 22px;
    font-size: 15px;
    color: #111827;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

/* Input Height */

.php-email-form input {
    height: 58px;
}

/* Textarea */

.php-email-form textarea {
    height: 160px;
    padding-top: 18px;
    resize: none;
}

/* Placeholder */

.php-email-form input::placeholder,
.php-email-form textarea::placeholder {
    color: #9ca3af;
}

/* Focus */

.php-email-form input:focus,
.php-email-form textarea:focus {
    border-color: rgba(4,74,164,0.25);
    box-shadow: 0 0 0 4px rgba(4,74,164,0.06);
    outline: none;
}

/* Submit Button */

.php-email-form .site-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 14px 30px rgba(4,74,164,0.22);
}

.php-email-form .site-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(4,74,164,0.3);
}

/* Loading / Error / Success */

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
    display: none;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
}

/* Loading */

.php-email-form .loading {
    background: rgba(4,74,164,0.08);
    color: #044aa4;
}

/* Error */

.php-email-form .error-message {
    background: rgba(239,68,68,0.08);
    color: #dc2626;
}

/* Success */

.php-email-form .sent-message {
    background: rgba(34,197,94,0.08);
    color: #16a34a;
}

/* Bootstrap Utility */

.php-email-form .d-block {
    display: block !important;
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .php-email-form input {
        height: 54px;
    }

    .php-email-form textarea {
        height: 140px;
    }

}


/*---------------------
  Contact Address
-----------------------*/

.contact-address {
    position: relative;
    padding-bottom: 90px;
    background: #f8fafc;
    overflow: hidden;
}

/* Background Glow */

.contact-address::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    top: -160px;
    right: -120px;
    filter: blur(40px);
}

.contact__address__text {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(4, 74, 164, 0.08);
    padding-top: 90px;
}

/* Contact Card */

.contact__address__item {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 38px 32px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    height: 100%;
}

/* Accent Glow */

.contact__address__item::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(4, 74, 164, 0.05);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    transition: 0.4s ease;
}

.contact__address__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(4, 74, 164, 0.08);
}

.contact__address__item:hover::before {
    transform: scale(1.2);
}

/* Optional Icon */

.contact__address__item .icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    box-shadow: 0 14px 28px rgba(4, 74, 164, 0.18);
}

.contact__address__item .icon i {
    color: #ffffff;
    font-size: 30px;
}

/* Heading */

.contact__address__item h4 {
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* Paragraph */

.contact__address__item p {
    line-height: 32px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 15px;
}

/* Highlight Text */

.contact__address__item span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #044aa4;
    font-weight: 700;
    margin-top: 6px;
}

/* Links */

.contact__address__item a {
    color: inherit;
    transition: 0.3s ease;
}

.contact__address__item a:hover {
    color: #044aa4;
}

/* Responsive */

@media only screen and (max-width: 767px) {

    .contact-address {
        padding-bottom: 70px;
    }

    .contact__address__text {
        padding-top: 70px;
    }

    .contact__address__item {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .contact__address__item h4 {
        font-size: 22px;
    }

}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header__menu ul li {
        margin-right: 32px;
    }

    .chooseus {
        height: auto;
    }

    .chooseus__video {
        height: 100%;
    }

    .car__filter form .filter-price .price-input {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 20px;
    }

    .car__details__tab .nav-tabs .nav-item {
        margin-right: 8px;
    }

    .testimonial__slider.owl-carousel .owl-nav button {
        left: -10px;
    }

    .testimonial__slider.owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero__text {
        padding-top: 0;
        margin-bottom: 40px;
    }

    .feature__text {
        margin-bottom: 500px;
    }

    .feature__item {
        float: none;
    }

    .chooseus {
        height: auto;
        padding-bottom: 0;
    }

    .chooseus__video {
        height: 100%;
        width: 100%;
        position: relative;
    }

    .chooseus__text {
        margin-bottom: 40px;
    }

    .car__sidebar {
        margin-bottom: 40px;
    }

    .car__details__tab .nav-tabs .nav-item {
        margin-right: 8px;
    }

    .blog__sidebar {
        padding-top: 45px;
    }

    .testimonial__slider.owl-carousel .owl-nav button {
        left: -10px;
    }

    .testimonial__slider.owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }

    .header__top {
        display: none;
    }

    .header__nav {
        display: none;
    }

    .header .container {
        position: relative;
    }

    .canvas__open {
        display: block;
        font-size: 22px;
        color: #323232;
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        border: 1px solid #323232;
        border-radius: 2px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 35px;
    }

    .offcanvas-menu-overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        content: "";
        z-index: 98;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        visibility: hidden;
    }

    .offcanvas-menu-overlay.active {
        visibility: visible;
    }

    .offcanvas-menu-wrapper {
        position: fixed;
        left: -300px;
        width: 300px;
        height: 100%;
        background: #ffffff;
        padding: 50px 30px 30px;
        display: block;
        z-index: 99;
        overflow-y: auto;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        opacity: 0;
    }

    .offcanvas-menu-wrapper.active {
        opacity: 1;
        left: 0;
    }

    .offcanvas__menu {
        display: none;
    }

    .slicknav_btn {
        display: none;
    }

    .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 30px;
    }

    .slicknav_nav ul {
        margin: 0;
    }

    .slicknav_nav .slicknav_row,
    .slicknav_nav a {
        padding: 7px 0;
        margin: 0;
        color: #353535;
        font-weight: 600;
    }

    .slicknav_nav .slicknav_row:hover {
        border-radius: 0;
        background: transparent;
        color: #353535;
    }

    .slicknav_nav a:hover {
        border-radius: 0;
        background: transparent;
        color: #353535;
    }

    .slicknav_nav {
        display: block !important;
    }

    .offcanvas__logo {
        margin-bottom: 30px;
    }

    .offcanvas__widget {
        margin-bottom: 30px;
    }

    .offcanvas__widget a {
        font-size: 15px;
        color: #353535;
        margin-right: 20px;
        display: inline-block;
    }

    .offcanvas__widget .primary-btn {
        color: #ffffff;
    }

    .offcanvas__widget__add {
        margin-bottom: 20px;
    }

    .offcanvas__widget__add li {
        font-size: 15px;
        color: #353535;
        margin-right: 35px;
        list-style: none;
        line-height: 30px;
    }

    .offcanvas__widget__add li:last-child {
        margin-right: 0;
    }

    .offcanvas__widget__add li i {
        font-size: 18px;
        color: #353535;
        margin-right: 6px;
    }

    .offcanvas__social a {
        display: inline-block;
        font-size: 15px;
        color: #353535;
        margin-right: 16px;
    }

    .offcanvas__social a:last-child {
        margin-right: 0;
    }

    .offcanvas__phone__num {
        margin-bottom: 20px;
    }

    .offcanvas__phone__num i {
        color: #353535;
        margin-right: 6px;
        font-size: 15px;
    }

    .offcanvas__phone__num span {
        font-size: 15px;
        color: #353535;
    }

    .blog-details-hero {
        padding-bottom: 150px;
    }

    .blog-details {
        margin-top: -100px;
    }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
    .hero__text {
        padding-top: 0;
        margin-bottom: 40px;
    }

    .chooseus {
        height: auto;
        padding-bottom: 0;
    }

    .chooseus__video {
        height: 100%;
        width: 100%;
        position: relative;
    }

    .chooseus__text {
        margin-bottom: 40px;
    }

    .footer__contact__option .option__item {
        margin-bottom: 12px;
    }

    .car__sidebar {
        margin-bottom: 40px;
    }

    .blog__sidebar {
        padding-top: 45px;
    }

    .feature:after {
        left: 0%;
        top: 27%;
        width: 100%;
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    .feature__text {
        margin-bottom: 500px;
    }

    .feature__item {
        float: none;
    }

    .footer__contact__option {
        text-align: left;
    }

    .footer__contact__title {
        margin-bottom: 20px;
    }

    .car__filter__option .car__filter__option__item.car__filter__option__item--right {
        text-align: left;
        padding-top: 20px;
    }

    .blog__details__share__item {
        width: calc(50% - 34px);
    }

    .blog__details__comment__form form .input-list {
        margin-right: 0;
        overflow: hidden;
    }

    .blog__details__comment__form form .input-list-item {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .call__text {
        margin-bottom: 40px;
    }

    .testimonial__slider.owl-carousel .owl-nav {
        display: none;
    }

    .blog-details-hero {
        padding-bottom: 150px;
    }

    .blog-details {
        margin-top: -100px;
    }

    .header__top {
        display: none;
    }

    .header__nav {
        display: none;
    }

    .offcanvas-menu-wrapper {
        display: block;
    }

    .header .container {
        position: relative;
    }

    .canvas__open {
        display: block;
        font-size: 22px;
        color: #323232;
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        border: 1px solid #323232;
        border-radius: 2px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 35px;
    }

    .offcanvas-menu-overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        content: "";
        z-index: 98;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        visibility: hidden;
    }

    .offcanvas-menu-overlay.active {
        visibility: visible;
    }

    .offcanvas-menu-wrapper {
        position: fixed;
        left: -300px;
        width: 300px;
        height: 100%;
        background: #ffffff;
        padding: 50px 30px 30px;
        display: block;
        z-index: 99;
        overflow-y: auto;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        opacity: 0;
    }

    .offcanvas-menu-wrapper.active {
        opacity: 1;
        left: 0;
    }

    .offcanvas__menu {
        display: none;
    }

    .slicknav_btn {
        display: none;
    }

    .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 30px;
    }

    .slicknav_nav ul {
        margin: 0;
    }

    .slicknav_nav .slicknav_row,
    .slicknav_nav a {
        padding: 7px 0;
        margin: 0;
        color: #353535;
        font-weight: 600;
    }

    .slicknav_nav .slicknav_row:hover {
        border-radius: 0;
        background: transparent;
        color: #353535;
    }

    .slicknav_nav a:hover {
        border-radius: 0;
        background: transparent;
        color: #353535;
    }

    .slicknav_nav {
        display: block !important;
    }

    .offcanvas__logo {
        margin-bottom: 30px;
    }

    .offcanvas__widget {
        margin-bottom: 30px;
    }

    .offcanvas__widget a {
        font-size: 15px;
        color: #353535;
        margin-right: 20px;
        display: inline-block;
    }

    .offcanvas__widget .primary-btn {
        color: #ffffff;
    }

    .offcanvas__widget__add {
        margin-bottom: 20px;
    }

    .offcanvas__widget__add li {
        font-size: 15px;
        color: #353535;
        margin-right: 35px;
        list-style: none;
        line-height: 30px;
    }

    .offcanvas__widget__add li:last-child {
        margin-right: 0;
    }

    .offcanvas__widget__add li i {
        font-size: 18px;
        color: #353535;
        margin-right: 6px;
    }

    .offcanvas__social a {
        display: inline-block;
        font-size: 15px;
        color: #353535;
        margin-right: 16px;
    }

    .offcanvas__social a:last-child {
        margin-right: 0;
    }

    .offcanvas__phone__num {
        margin-bottom: 20px;
    }

    .offcanvas__phone__num i {
        color: #353535;
        margin-right: 6px;
        font-size: 15px;
    }

    .offcanvas__phone__num span {
        font-size: 15px;
        color: #353535;
    }

    .blog__details__hero__text ul li {
        margin-right: 25px;
    }

    .blog__details__hero__text ul li span::after {
        right: -16px;
    }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {

    .section-title h2,
    .breadcrumb__text h2 {
        font-size: 34px;
    }

    .hero__text__title h2 {
        font-size: 38px;
    }

    .hero__tab__form form .car-price .price-input {
        position: relative;
        left: 0;
        top: 0;
        padding-top: 15px;
    }

    .hero__tab__form {
        padding: 42px 20px 50px;
    }

    .hero__tab__form form .select-list .select-list-item {
        max-width: 100%;
        float: none;
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
        margin-right: 0;
    }

    .hero__tab__form form .select-list {
        margin-right: 0;
    }

    .hero__text__price {
        padding-left: 0;
    }

    .hero__text__price .car-model {
        position: relative;
    }

    .hero__text__price h2 {
        margin-top: 20px;
        font-size: 34px;
    }

    .feature__text {
        margin-bottom: 40px;
    }

    .feature:after {
        display: none;
    }

    .feature__text__btn .primary-btn {
        margin-bottom: 10px;
    }

    .blog__details__comment__item.reply__comment {
        margin-left: 0;
    }

    .hero__text .primary-btn {
        margin-bottom: 10px;
    }

    .filter__controls li {
        margin-right: 15px;
    }

    .blog__details__hero__text h2 {
        font-size: 35px;
        line-height: normal;
    }

    .blog__details__quote {
        padding: 0;
    }

    .blog__details__comment__item__pic {
        float: none;
        margin-bottom: 15px;
    }

    .blog__details__author__pic {
        float: none;
        margin-right: 0;
    }

    .blog__details__author__text {
        overflow: visible;
        padding-top: 30px;
    }

    .section-title.about-title h2 {
        line-height: normal;
    }

    .search-model-form input {
        font-size: 24px;
        width: 100%;
    }
}




/**/

/*---------------------
  Car Enquiry
-----------------------*/

.car-enquiry {
    background: #f8fafc;
}

.car-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.car-card__image {
    position: relative;
    overflow: hidden;
}

.car-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

.car-card:hover .car-card__image img {
    transform: scale(1.06);
}

.car-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #044aa4;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.car-card__content {
    padding: 28px;
}

.car-card__content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #1f2937;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.spec-item {
    background: #f3f4f6;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item i {
    color: #044aa4;
}

.car-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.car-price {
    font-size: 13px;
    color: #6b7280;
}

.car-price h5 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-top: 5px;
}

.enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 24px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.enquiry-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(4, 74, 164, 0.25);
}

@media only screen and (max-width: 767px) {

    .car-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .enquiry-btn {
        width: 100%;
    }

}

/*==============================
  Leadership Section
==============================*/

.leadership {
    position: relative;
    background: #f8fafc;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Glow */

.leadership::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(4, 74, 164, 0.04);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    filter: blur(40px);
}

/* Card */

.leadership-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* Image */

.leadership-image {
    position: relative;
    overflow: hidden;
}

.leadership-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.6s ease;
}

.leadership-card:hover .leadership-image img {
    transform: scale(1.05);
}

/* Content */

.leadership-content {
    padding: 40px;
}

/* Tag */

.leadership-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(4, 74, 164, 0.08);
    color: #044aa4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

/* Name */

.leadership-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

/* Designation */

.leadership-content h6 {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 28px;
    font-weight: 600;
}

/* Quote */

.leadership-content blockquote {
    position: relative;
    font-size: 22px;
    line-height: 38px;
    color: #111827;
    font-weight: 600;
    margin-bottom: 28px;
    padding-left: 28px;
}

.leadership-content blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: calc(100% - 12px);
    border-radius: 50px;
    background: linear-gradient(135deg, #044aa4, #0d6efd);
}

/* Paragraph */

.leadership-content p {
    font-size: 15px;
    line-height: 32px;
    color: #6b7280;
    margin-bottom: 22px;
}

/* Points */

.leadership-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 35px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f3f4f6;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.point-item:hover {
    background: linear-gradient(135deg, #044aa4, #0d6efd);
    color: #ffffff;
    transform: translateY(-3px);
}

.point-item i {
    font-size: 18px;
}

/* CEO Card */

.ceo-card {
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg,
            rgba(4, 74, 164, 0.02),
            rgba(13, 110, 253, 0.03)),
        #ffffff;
}

/* Responsive */

@media only screen and (max-width: 991px) {

    .leadership-content {
        padding: 35px 28px;
    }

}

@media only screen and (max-width: 767px) {

    .leadership {
        padding: 70px 0;
    }

    .leadership-image img {
        height: 320px;
    }

    .leadership-content {
        padding: 28px 22px;
    }

    .leadership-content h3 {
        font-size: 28px;
    }

    .leadership-content blockquote {
        font-size: 18px;
        line-height: 32px;
    }

}

/**
/

/* ---------- CEO ---------- */
.ceo-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ceo-content .designation {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 18px;
    display: inline-block;
}

.journey-wave {
    /*  padding: 120px 0;*/
    background: #fff;
}

/*

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 600;
}

.section-title p {
  margin-top: 10px;
  color: #6b7280;
}
*/

.journey-svg {
    width: 100%;
    height: auto;
    /*  margin-top: 80px;*/
}

/* NODE */
.wave-node {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    padding: 22px;
    /*  box-shadow: 0 25px 55px rgba(0,0,0,0.1);*/
    text-align: center;
    font-family: inherit;
}

.wave-node .year {
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
}

.wave-node h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.wave-node p {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #6b7280;
}

/* COLORS */
.wave-node.yellow {
    border: 12px solid #fbbf24;
}

.wave-node.blue {
    border: 12px solid #3b82f6;
}

.wave-node.orange {
    border: 12px solid #f97316;
}

.wave-node.dark {
    border: 12px solid #111827;
}

/* MOBILE FALLBACK */
@media (max-width: 992px) {
    .journey-svg {
        display: none;
    }

    .journey-wave::after {
        /*    content: "Journey timeline optimized for desktop view";*/
        display: block;
        /*    text-align: center;*/
        /*    margin-top: 40px;*/
        /*    color: #6b7280;*/
    }
}

/* MOBILE TIMELINE (HIDDEN ON DESKTOP) */
.journey-mobile {
    display: none;
    margin-top: 60px;
}

/* MOBILE ITEM */
.journey-item {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-left: 6px solid;
}

.journey-item span {
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 6px;
}

.journey-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.journey-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
}

/* COLORS */
.journey-item.yellow {
    border-color: #fbbf24;
}

.journey-item.blue {
    border-color: #3b82f6;
}

.journey-item.orange {
    border-color: #f97316;
}

.journey-item.dark {
    border-color: #111827;
}

/* RESPONSIVE SWITCH */
@media (max-width: 992px) {
    .journey-svg {
        display: none;
    }

    .journey-mobile {
        display: block;
    }
}
