/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #154b79;
    --light: #fff;
    --dark: #000;
	--secondary: #ff3c00;
	--yellow: #f8d809;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
}
html {
    overflow-x: hidden;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar {
    height: 70px;
    background: var(--secondary);
    color: #fff;
    padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 10;
    padding: 0px 0;
    border-radius: 30px;
    background: #ffffff;
    margin-top: -26px;
}


.site-header.sticky .main-header {
/*     position: fixed !important; */
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}


.logo-box img {
    width: 260px;
    height: auto;
    box-shadow: 0 6px 20px #ffffff;
}
.logo-box {
    position: relative;
    z-index: 20;
    padding: 10px 0px;
    left: -20px;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--secondary);
    padding: 5px 15px;
	color: #fff !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 44%;
    z-index: 2;
}
section.breadcrumb-section {
    background: linear-gradient(45deg, #011a30, #ff3c0094);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 46vh;
    position: relative;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff !important;
}
.breadcrumb-title h2 {
    color: #ffffff;
}
li.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: #e9ecef;
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://auto-held.eu/wp-content/uploads/2026/05/footerbg.png);
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    color: #000;
    z-index: 1;
	padding-top: 30px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 65%);
    z-index: -1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 250px;
    display: block;
    box-shadow: 0px 4px 17px #ffffff5e;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a {
    color: #ffffff !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--secondary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: var(--primary) !important;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid var(--secondary);
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #ffffff;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
a.btn-primary {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
}

a.btn-primary:hover {
    border-radius: 0 20px;
}


/* Hero Slider */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #ff3c00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
  background: #d93200;
}

/* Arrow Design */
.swiper-button-next,
.swiper-button-prev {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ff3c00;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Mobile */
@media(max-width:768px){

  .hero-content h1{
    font-size: 36px;
  }

  .hero-content p{
    font-size: 16px;
  }

  .swiper-button-next,
  .swiper-button-prev{
    width:45px;
    height:45px;
  }
}


/* ABOUT SECTION */

.about-section{
    padding:100px 0;
    background:#f8f8f8;
    font-family: 'Montserrat', sans-serif;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:320px;
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.about-content{
    flex:1;
    min-width:320px;
}

.sub-title{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--secondary);
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.sub-title::before {
    content: "";
    width: 4px;
    height: 30px;
    background: var(--secondary);
    display: block;
}

.about-content h2 {
    font-size: 30px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    margin-top:35px;
}

/* Responsive */

@media(max-width:991px){

    .about-wrapper{
        flex-direction:column;
    }

    .about-content h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .about-section{
        padding:70px 0;
    }

    .about-content h2{
        font-size:30px;
    }

    .feature-box{
        flex-direction:column;
    }
}


/* Why Us  */
/* WHY US SECTION */

.why-us-section{
    padding:100px 0;
    background:#111;
    color:#fff;
    font-family:'Montserrat', sans-serif;
}



.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}


.section-heading h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.section-heading p {
    color: #333333c7;
    line-height: 1.8;
    font-size: 16px;
}

.why-us-section .section-heading h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}
.why-us-section .section-heading p {
    color: #fff;
    line-height: 1.8;
    font-size: 16px;
}

.why-us-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-box{
    background:linear-gradient(45deg, black, var(--primary));
    padding:40px 30px;
    border-radius:20px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    z-index:1;
}

/* Hover Background Animation */
.why-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff3c007a, #00000069);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.why-box:hover::before{
    bottom:0;
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-box:hover{
    transform:translateY(-10px);
    background:#202020;
}

.why-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 17px;
    color: #ffffff;
}

.why-box h3{
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
}

.why-box p{
    color:#bfbfbf;
    line-height:1.8;
    font-size:15px;
}

/* Responsive */

@media(max-width:991px){

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

    .section-heading h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .why-us-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:30px;
    }

    .why-us-section{
        padding:70px 0;
    }
}

/* Service Section */
/* SERVICES SECTION */

.services-section{
    padding:100px 0;
    background:#f8f8f8;
    font-family:'Montserrat', sans-serif;
}
.services-section .section-heading h2 {
    color: var(--primary);
}
.services-section .section-heading p {
    color: #434040;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.service-box::before{
    content:"";
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(45deg, #000, var(--primary));
    transition:0.5s ease;
    z-index:0;
}

.service-box:hover::before{
    bottom:0;
}

.service-box:hover{
    transform:translateY(-10px);
}

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

.service-icon{
    width:80px;
    height:80px;
    background:#f2f2f2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:0.4s;
}

.service-icon img {
    width: 52px;
}

.service-box h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111;
    transition:0.4s;
}

.service-box p{
    color:#666;
    line-height:1.8;
    transition:0.4s;
}

.service-box:hover h3,
.service-box:hover p{
    color:#fff;
}

.service-box:hover .service-icon{
    background:#fff;
}

/* Responsive */

@media(max-width:991px){

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

    .section-heading h2{
        font-size:38px;
    }
}

@media(max-width:576px){

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

    .services-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:30px;
    }
}

/* MODELS SECTION */

.models-section {
    padding: 100px 0;
    background: #ebe2e2ab;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}


/* Card */

.model-card{
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    position:relative;
    padding:30px;
}

.model-card:hover{
    transform:translateY(-10px);
}

.model-image{
    text-align:center;
    margin-bottom:20px;
}

.model-image img {
    width: 100%;
    max-height: 170px;
    object-fit: contain;
    transition: 0.5s;
}
.model-card:hover .model-image img{
    transform:scale(1.05);
}

.model-content{
    text-align:center;
}

.model-content h3 {
    font-size: 20px;
    color: #231f1f;
    margin-bottom: 10px;
    font-weight: 600;
}
.model-content span{
    color:var(--primary);
    font-size:22px;
    font-weight:700;
}

/* Swiper Arrows */

.swiper-button-next,
.swiper-button-prev{
    width:55px;
    height:55px;
    background:var(--primary);
    border-radius:50%;
    color:#fff;
    transition:0.4s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#fff;
    color:#111;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:bold;
}

/* Responsive */

@media(max-width:991px){

    .section-heading h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .models-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:30px;
    }
}


/* =========================
   BLOG SECTION
========================= */
/* BLOG GRID */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
section.blog-section {
    padding: 60px 0px;
}
/* BLOG CARD */

.blog-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */

.blog-image{
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

/* CONTENT */

.blog-content{
    padding:30px;
}

.blog-meta{
    margin-bottom:15px;
}

.blog-meta span{
    color:#777;
    font-size:14px;
}

.blog-meta i{
    color:var(--primary);
    margin-right:6px;
}

/* TITLE */

.blog-title {
    margin-bottom: 18px;
    line-height: 26px;
}
.blog-title a {
    font-size: 19px;
    line-height: 10px;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

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

/* EXCERPT */

.blog-excerpt{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/* BUTTON */

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.blog-btn i{
    transition:0.4s;
}

.blog-btn:hover i{
    transform:translateX(6px);
}

/* RESPONSIVE */

@media(max-width:991px){

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

    .blog-title a{
        font-size:22px;
    }
}

@media(max-width:576px){

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

    .blog-image img{
        height:240px;
    }

    .blog-content{
        padding:24px;
    }

    .blog-title a{
        font-size:20px;
    }
}
/* About Us Page */
.choose-section {
    background: #fff;
}
.choose-section h2 {
    font-size: 30px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.choose-card {
    position: relative;
    background: #e7e7e7;
    border-radius: 12px;
    padding: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.choose-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.choose-card:hover::before {
    bottom: 0;
}

.choose-card:hover {
    color: #fff;
    transform: translateY(-5px);
}

.choose-card * {
    position: relative;
    z-index: 2;
}.counter-image.mb-3 {
    background: #093b7e2e;
    height: 80px;
    width: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
}

.choose-card:hover h2,
.choose-card:hover p {
    color: #fff;
}


.choose-card .icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #1e2a3a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 18px;
}
ul.choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.choose-list li {
    position: relative;
    padding-left: 31px;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 600;
}

ul.choose-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff520d;
    font-size: 15px;
    font-weight: bold;
    background: #093b7e;
    padding: 2px 6px;
    border-radius: 50%;
    margin-left: -5px;
}
.counter-image img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.counter-number{
    font-size:42px;
    font-weight:700;
}

/* Testimonial */
/* Testimonial Section */
section.testimonial-section {
    background: var(--primary) url(https://auto-held.eu/wp-content/uploads/2026/06/tes-bg-2-1.png);
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonial-section h2 {
    font-size: 30px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
}
section.testimonial-section .swiper-pagination-bullet-active{
	background: var(--secondary);
}
.testimonial-section .haeding-section {
    text-align: center;
    width: 70%;
    color: #fff;
    margin: 0 auto 4rem;
}
.testimonial-slider{
    position:relative;
    z-index:2;
    padding-bottom:60px;
}
 
.testimonial-card{
    background:#05143c;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
    height:100%;
}
.testimonial-card:hover{
    transform:translateY(-8px);
}
.quote-box{
    background:rgba(255,255,255,0.12);
    padding:45px 35px 70px;
    border-radius:20px;
    text-align:center;
    position:relative;
}
.testimonial-card .stars{
    margin-bottom:25px;
}
.testimonial-card .stars i{
    color: #fff;
    margin:0 3px;
    font-size:18px;
}
.contact-item a {
    text-decoration: none;
    color: #000;
}
.quote-text{
    color:#fff;
    font-size:18px;
    line-height:1.8;
    margin:0;
}
.profile-image{
    width:65px;
    height:65px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #111;
    position:absolute;
    left:50%;
    bottom:-32px;
    transform:translateX(-50%);
}
.profile-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.profile-content{
    text-align:center;
    padding:65px 30px 35px;
}
.profile-content h3{
    color:#fff;
    font-size:28px;
    font-weight:600;
    margin-bottom:10px;
}
.profile-content p{
    color:#ddd;
    font-size:17px;
    margin:0;
}



/* ================================
  Contact Page Css
================================ */
section.contact-inner-section {
    padding: 60px 0px;
}
   .contact-page-box {
    background: #ffffff82;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
}    
    .form-control {
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #000;
    }
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: none;
    } 
    .info-card {
        padding: 35px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #ececec;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{ 
		color: #000 !important;
		text-decoration: none;		
	}
    .info-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }
   .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 12px;
        margin-top: 40px;
    }


/* Contact form  */

.wpcf7 form{
    width:100%;
}

.wpcf7 input,
.wpcf7 textarea{
    width:100%;
    border:1px solid #dcdcdc;
    padding:15px 18px;
    margin-bottom:20px;
    border-radius:10px;
    font-size:15px;
    color:#111;
    background:#fff;
    transition:0.3s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus{
    border-color:var(--primary);
    outline:none;
    box-shadow:none;
}

.wpcf7 textarea{
    height:180px;
    resize:none;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder{
    color:#777;
}

.wpcf7-submit {
    background: var(--secondary) !important;
    color: #fff !important;
    border: none !important;
    padding: 13px 35px !important;
    border-radius: 8px !important;
    font-weight: 600;
    transition: 0.4s ease;
    width: auto !important;
    cursor: pointer;
}

.wpcf7-submit:hover{
    background:#111 !important;
    transform:translateY(-3px);
}

/* ERROR MESSAGE */

.wpcf7-not-valid-tip{
    font-size:13px;
    margin-top:-10px;
    margin-bottom:10px;
}

/* SUCCESS MESSAGE */

.wpcf7-response-output{
    border:none !important;
    margin:20px 0 0 !important;
    padding:15px 20px !important;
    border-radius:10px;
    background:#f5f5f5;
}

/* Gallery Page */

.car-gallery-section{
    padding:100px 0;
}

.car-card {
    background: #d5d3d39c;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    position: relative;
}

.car-card:hover{
    transform:translateY(-8px);
}

.car-image{
    padding:25px;
}

.car-image img{
    width:100%;
    height:220px;
    object-fit:contain;
    background:#fff;
    border-radius:18px;
    padding:20px;
    transition:0.4s;
}

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

.car-content{
    padding:25px;
}

.car-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
	 color: #154b79;
}
.short-desc{
    color:#666;
    margin-bottom:20px;
}

.car-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #154b79;
}

.feature-item i {
    color: var(--secondary);
}
.car-price {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
}
.car-buttons{
    display:flex;
    gap:15px;
}

.call-btn,
.contact-btn{
    flex:1;
    text-align:center;
    padding:14px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.call-btn{
    background:#ff4d00;
    color:#fff;
}

.contact-btn{
    background:#111;
    color:#fff;
}

.call-btn:hover,
.contact-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}
.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.car-price .year {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    font-weight: 700;
}

.car-price .year span {
     font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    font-weight: 700;
}
/* RESPONSIVE */

@media(max-width:767px){

    .car-content h3{
        font-size:24px;
    }

    .car-features{
        grid-template-columns:1fr;
    }

    .car-buttons{
        flex-direction:column;
    }
}

/* Full RESPONSIVE starts here */


@media(max-width:991px){
	nav.d-none.d-md-block {
    display: none !important;
}
	button#mobileMenuBtn {
    display: block !important;
    padding: 10px 18px;
}
	#mobileMenuBtn i {
    color: #ffffff !important;
}
	.hero-content h1 {
    font-size: 34px;
}
	.hero-content {
  margin-left:30px !important;
}
	div#mobileMenu a {
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 4px;
    /* gap: 20px !important; */
}
	.about-image {
    min-width: 100% !important;
}
	.service-box:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    width: 100%;
    justify-self: center;
}
	.services-section {
    padding: 60px 0;
}
	.why-us-section {
    padding: 60px 0;
}
	.about-section {
    padding: 60px 0;
}
	section.blog-section .blog-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50% !important;
}

.col-md-4.col-sm-6.mb-4.d-flex {
    width: 50%;
}
article.blog-card {
    width: 100% !important;
}	

}

@media(max-width:767px){
	
	.car-buttons {
    flex-direction: row;
    justify-content: center;
}
	.blog-grid {
    grid-template-columns: repeat(1,1fr);
}
	
	section.blog-section .blog-card:last-child:nth-child(odd) {
    width: 100% !important;
}
}

@media(max-width:667px){
	.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 9px;
    font-weight: bold;
}
	.swiper-button-next, .swiper-button-prev {
    width: 42px;
    height: 42px;
}
	.hero-content {
    margin-left: 14px !important;
}
	.top-bar-inner {
    display: flex;
    gap: 9px;
}
	.col-md-4.col-sm-6.mb-4.d-flex {
    width: 100% !important;
}
}

@media(max-width:568px){
	.top-bar {
    display: none !important;
}
	.service-box:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 100% !important;
    width: 100%;
    justify-self: center;
}
	footer .social-icons {
    margin-bottom: 20px !important; 
}
	
}

@media(max-width:479px){
	
	
}

@media(max-width:414px){
	.car-buttons {
    flex-direction: column;
    justify-content: center;
}
	.about-content h2 {
    font-size: 25px;
}
	.choose-section h2 {
    font-size: 25px;
}
	choose-section .row.col-6 {
    flex: 0 0 auto;
    width: 100%;
}
	.row.g-4.counter-card .col-6 {
    width: 100%;
}
	section.testimonial-section {
    padding: 60px 0;
}
	.info-card {
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}
}
@media(max-width:379px){
	
	.hero-content p {
    font-size: 16px;
    display: none !important;
}
	.hero-content h1 {
    font-size: 19px;
		line-height:30px;
}
	.about-content h2 {
    font-size: 20px;
}
	.why-us-section .section-heading h2 {
    font-size: 20px;
}
	.section-heading h2 {
    font-size: 20px;
}
	.progress-wrap {
    right: 19px;
    bottom: 70px;
}
	.breadcrumb-content {
    margin-top: -35px !important;
}
}
@media(max-width:360px){
	
	.site-header .main-header {
    margin-top: 15px !important;
}
	.hero-slide {
    height: 76vh !important;
}
	.hero-slider {
    height: 76vh !important;

}
	.breadcrumb-content {
    margin-top: -35px !important;
}
}
