.main-cars-wrap,.car-card{
	overflow-x:hidden;
}
nav {
    transition: 0.3s ease all;
}
nav.hfe-nav-menu__layout-horizontal.hfe-nav-menu__submenu-arrow.hfe-dropdown.menu-is-active {
    top: 5rem;
    border-radius: 20px;
}

.gradient-heading {
  /* Fallback for old browsers */
  color: #FFD06A;
  /* Gradient background */
  background: linear-gradient(45deg, #FFFFFF 0%, #FFD06A 100%);
  background: -webkit-linear-gradient(45deg, #FFFFFF 0%, #FFD06A 100%);
  background: -moz-linear-gradient(45deg, #FFFFFF 0%, #FFD06A 100%);
  background: -o-linear-gradient(45deg, #FFFFFF 0%, #FFD06A 100%);
  /* Clip text */
  -webkit-background-clip: text;
  background-clip: text;
  /* Make text transparent */
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.gradient-heading-dark {
  /* Fallback */
  color: #FBB040;
  /* Gradient */
  background: linear-gradient(135deg, #FCD34D 0%, #FBB040 100%);
  background: -webkit-linear-gradient(135deg, #FCD34D 0%, #FBB040 100%);
  background: -moz-linear-gradient(135deg, #FCD34D 0%, #FBB040 100%);
  background: -o-linear-gradient(135deg, #FCD34D 0%, #FBB040 100%);
  /* Clip */
  -webkit-background-clip: text;
  background-clip: text;
  /* Transparency */
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

#ast-scroll-top {
    font-size: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FCD34D 0%, #FBB040 100%);
    background: -webkit-linear-gradient(135deg, #FCD34D 0%, #FBB040 100%);
    transition: 0.3s ease all;
}

div#ast-scroll-top:hover {
    transform: translateY(-5px);
}

.car-item img {
    height: 300px;
    object-fit: contain;
}

.blur-bg{
	background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
	cursor:pointer;
}

.blur-bg:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta-section .cta-basic {
    background: linear-gradient(135deg, #0B4DB6 0%, #4d89d1 100%)!important;
}

 .cta-button {
    transition: all 0.3s ease;
	border-radius:10px;
}

.float-box:hover{
	transform:scale(1.02);
	cursor:pointer;
}

.cta-button span{
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.cta-button:hover {
    transform: translateY(-3px);
/*     box-shadow: 0 8px 30px rgba(252, 211, 77, 0.6); */
	border-radius:10px;
/*     background: linear-gradient(135deg, #FBB040 0%, #FCD34D 100%); */
}

input[type="text"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
    opacity: 0;
}

input[type="text"] {
    border-width: 1px;
    border-style: solid;
    border-color: var(--ast-border-color);
    background: var( --ast-global-color-secondary,--ast-global-color-5 );
    width: max-content;
    text-align: center;
    background: transparent;
    color: white;
    border: none;
}

.date-picker-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.datepicker-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-button {
    flex: 0 0 auto;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, #FCD34D 0%, #FBB040 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.4);
}