/*
Theme Name: AMP Wheels
Author: Saroj
Description: Minimal WordPress skeleton theme
Version: 1.0.0
Text Domain: custom-amp
*/

.featured-vehicles {
    background: #f8f9fb;
}

/* Card styling */
.vehicle-card {
    border-radius: 15px;
    overflow: hidden;
}

/* Same height images */
.vehicle-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* Gradient overlay (IMPORTANT FIX) */
.overlay-content {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0)
    );
}

/* Title */
.overlay-content h5 {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* Hover effect */
.vehicle-card {
    transition: 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Image zoom */
.vehicle-card img {
    transition: transform 0.5s ease;
}

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

.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.offer-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

.offer-overlay h3 {
    color: #fff;
}

.offer-card:hover img {
    transform: scale(1.1);
}

.testdrive-img img {
    width: 100%;
    border-radius: 12px;
}

.testdrive-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testdrive-form .form-control {
    height: 50px;
    margin-bottom: 15px;
}
.td-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.td-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


.product-hero{
    height:350px;
    background-size:cover;
    background-position:center;
    border-radius:25px;
    position:relative;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-overlay h2{
    font-size:20px;
    font-weight:700;
    color: #fff;
}

.tagline{
    background:#ffffffcc;
    color:#000;
    padding:5px 15px;
    border-radius:20px;
    margin:10px 0;
}

.price{
    position:absolute;
    bottom:90px;
    font-size:15px;
}

.btn-box{
    position:absolute;
    bottom:25px;
}

.btn-box .btn{
    margin:5px;
    padding:10px 20px;
    border-radius:30px;
}

.site-breadcrumbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 610px;
    padding-bottom: 150px;
    z-index: 1;
}
.site-breadcrumbservice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 350px;
    padding-bottom: 150px;
    z-index: 1;
}
.product-image {
    background: #e2e2e2;
    padding: 5px;
    border-radius: 20px;
}
.product-image img {
    width: 100%;
    border-radius: 20px;
}
.modern-modal{

border-radius:20px;
padding:10px;

}

.modern-input{

height:50px;
border-radius:10px;
border:1px solid #ddd;

}

.modern-input:focus{

border-color:#000;
box-shadow:none;

}

.modern-btn{

height:55px;
border-radius:12px;
background:#000;
color:#fff;
font-size:18px;
font-weight:600;

}

.modern-btn:hover{

background:#333;

}
.banner-overlay-box {
    position: absolute;
    bottom: 50px;
    color: #fff;
}
.shop-item-single img{
    width:100% !important;
}

.floating-icons {
    position: fixed;
    right: 30px;
    bottom: 78px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.call-float,
.whatsapp-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.call-float:hover,
.whatsapp-float:hover { color:#fff !important }
.call-float {
    background: #007bff;
}

.whatsapp-float {
    background: #25D366;
}
.testimonial-quote p {
	font-size:14px;
}
.testimonial-quote {
    min-height: 151px;
}
/* Section spacing */
.product-section {
    padding: 70px 0;
}

/* Alternate background */
.product-section.bg-light {
    background: #f8f9fa;
}

/* Image */
.product-img {
    border-radius: 12px;
    transition: 0.3s ease;
}

.product-img:hover {
    transform: scale(1.03);
}

/* Content */
.product-content {
    padding: 20px;
}

.product-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-content .price {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.product-content .price strong {
    font-size: 24px;
    color: #000;
}

/* Buttons */
.buttons .btn {
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .product-content {
        text-align: center;
        margin-top: 20px;
    }

    .product-content h2 {
        font-size: 26px;
    }
}

.newbtn {
    background: var(--color-white) !important;
    color: var(--color-dark) !important;
}
.newbtn:hover {
    background: var(--color-dark) !important;
    color: var(--color-white) !important;
}
.newbtnblack {
    background: var(--color-dark) !important;
    color: var(--color-white) !important;
}
.newbtnblack:hover {
    background: var(--color-white) !important;
    color: var(--color-dark) !important;
}

.location-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .location-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
    .map-frame {
      width: 100%;
      height: 200px;
      border: 0;
    }
    .location-info {
      padding: 15px;
    }
    .location-title {
      font-weight: 600;
      font-size: 18px;
    }
    .location-address {
      color: #666;
      font-size: 14px;
    }
    
    .btn-black{
        background:#111111 !important;
        color: #fff;
    }
    
   .snow-btn {
    position: relative;
    display: inline-block;
    
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* Snow layers */
.snow-btn::before,
.snow-btn::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;

    background-image:
        radial-gradient(white 2px, transparent 2px),
        radial-gradient(white 1.5px, transparent 1.5px),
        radial-gradient(white 1px, transparent 1px);

    background-size: 50px 50px, 30px 30px, 20px 20px;
    
    animation: snowFall 6s linear infinite;
    opacity: 0.7;
}

/* Second layer (slower = depth) */
.snow-btn::after {
    animation-duration: 10s;
    opacity: 0.4;
}

/* Keyframes */
@keyframes snowFall {
    0% {
        transform: translate(0, -10%);
    }
    50% {
        transform: translate(10px, 50%);
    }
    100% {
        transform: translate(-10px, 100%);
    }
}
.blackwhite:hover {
    background: #111 !important;
    color: #fff !important;
}



/* Background (important for glass effect) */
.video-area {
    background: linear-gradient(135deg, #1d2b64, #f8cdda);
}

/* Glass card */
.glass-card {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

    padding: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Hover glow */
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Video box */
.video-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

/* Thumbnail */
.video-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

/* Dark overlay */
.video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 75px;
    height: 75px;

    border-radius: 50%;
    background: rgba(255,255,255,0.2);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.3);

    z-index: 2;
    transition: 0.3s ease;
}

/* Hover play button */
.play-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Image zoom */
.video-box img {
    transition: transform 0.5s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .video-box img {
        height: 220px;
    }
}

.aboutbanner {
    background-size: cover !important;
    background-position: center !important;
    height: 80vh;
    padding: 0;
}

.aboutvideo {
    position: relative;
}

.highlight-box {
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* Gradients */
.gradient-1 {
  background: #fff;
    box-shadow: 0px 0px 7px 0px #0000005c;
}

.gradient-2 {
  background: #fff;
    box-shadow: 0px 0px 7px 0px #0000005c;
}

.gradient-3 {
  background: #fff;
    box-shadow: 0px 0px 7px 0px #0000005c;
}

/* Road section */
.road-section {
  position: relative;
  width: 100%;
  height: 120px;
  background: #333;
  overflow: hidden;
}

/* Moving dashed line */
.road-line {
  position: absolute;
  top: 55px;
  width: 200%;
  height: 5px;
  background: repeating-linear-gradient(
    to right,
    white 0 40px,
    transparent 40px 80px
  );
  animation: roadMove 8s linear infinite; /* slower */
}

/* Car */
.car {
  position: absolute;
  bottom: 10px;
  left: -150px;
  width: 100px;
  animation: carMove 14s linear infinite, carBounce 1.5s ease-in-out infinite;
}

.car img {
  width: 100%;
}

/* Animations */
@keyframes roadMove {
  from { transform: translateX(0); }
  to { transform: translateX(-200px); }
}

@keyframes carMove {
  from { left: -150px; }
  to { left: 110%; }
}


 #calendar {
            width: 100%;
            border-radius: 10px;
            padding: 10px;
            border: 1px solid #e2e2e2;
        }

        #calendar .header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

       #calendar .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    background: var(--bs-black);
    color: var(--color-white);
    padding: 6px;
}
#calendar .header button {
    background: var(--bs-gray);
    color: var(--bs-white);
    border: 0;
    padding: 0px 10px;
}
        .days, .dates {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
        }

        .days { font-weight: bold; margin-bottom: 5px; }

        .date {
            padding: 7px;
            margin: 2px;
            cursor: pointer;
            border-radius: 6px;
        }

        .date:hover {
            background: var(--bs-black);
            color: white;
        }

        .today {
               background: var(--bs-pink);
            color: white;
        }

        .dates .active {
            background: var(--bs-orange);
            color: white;
        }

        .disabled {
            color: #ccc;
            pointer-events: none;
        }
        
        
        
        /* MODAL CONTAINER */
.modern-modals {
    border-radius: 5px;
    border: none;
    backdrop-filter: blur(10px);
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* IMAGE SIDE */
.image-side img {
    height: 100%;
    object-fit: cover;
}



/* FORM SIDE */
.form-side {
    background: #fff;
    padding-bottom: 20px;
}

/* INPUT STYLE */
.modern-input {
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 12px;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* FLOATING LABEL FIX */
.form-floating > label {
    font-size: 13px;
}

/* BUTTON STYLE */




/* MOBILE FIX */
@media (max-width: 768px) {
    .modern-modals {
        border-radius: 12px;
    }
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  color: #fff;
  text-align: center;
  z-index: 2;
}

.overlay h5 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.image-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.44);
  z-index: 1;
}

.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-custom .card-body {
    padding: 25px;
}

.card-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.card-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.card-text {
    color: #6c757d;
    font-size: 12px;
}

.card-img-bottom {
    height: 180px;
    object-fit: cover;
}

.st-preloader-wave {position: absolute; top: 50%; left: 50%; width:100px; height:100px; -webkit-transform:translate(-50%, -50%); transform:translate(-50%, -50%); background: #111111; padding:10px; border-radius:50%;}
.st-preloader-wave img{-webkit-transform: translate3d(0, 0, 0); -webkit-transform-origin:40px 40px; -webkit-transform: translate3d(0, 0, 0); -webkit-animation: rotateicon 3s linear 0s infinite; animation: rotateicon 3s linear 0s infinite;}
.st-preloader-wave:before{position: absolute;display: inline-block; width:150px; height:150px; content: "";  -webkit-animation: preloader-wave 1.5s linear infinite;
            animation: preloader-wave 1.5s linear infinite; border-radius: 50%; background: #111111 ; left: -25px; top: -25px;}

@-webkit-keyframes rotateicon {
	from {-webkit-transform: rotate(0deg); transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg); transform: rotate(360deg);}
}
@keyframes rotateicon {
	from {-webkit-transform: rotate(0deg); transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg); transform: rotate(360deg);}
}

@-webkit-keyframes preloader-wave {
    0% {-webkit-transform: scale(0, 0); transform: scale(0, 0); opacity: .5;}
    100% {-webkit-transform: scale(1, 1); transform: scale(1, 1); opacity: 0;}
}

@keyframes preloader-wave {
    0% {-webkit-transform: scale(0, 0);transform: scale(0, 0);opacity: .5; }
    100% {-webkit-transform: scale(1, 1); transform: scale(1, 1);opacity: 0;}
}



.about-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ===== IMAGE ===== */
.about-image {
    flex: 1;
    min-height: 350px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #111;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    
}

.about-badge h3 {
    margin: 0;
    font-size: 22px;
    color: #fff;
}

.about-badge p {
    margin: 0;
    font-size: 12px;
}

/* ===== CONTENT ===== */
.about-content {
    flex: 1;
    padding: 40px;
}

.about-tag {
    color: #111;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 26px;
    text-transform: uppercase;
}

.about-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===== FEATURES ===== */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.feature-box {
    background: #f4f4f4;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

/* ===== BUTTON ===== */
.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6b00;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #e55a00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-card {
        flex-direction: column;
    }

    .about-content {
        padding: 25px;
    }

    .about-title {
        font-size: 24px;
    }

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

.showroom-video {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* ===== VIDEO ===== */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* ===== OVERLAY ===== */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* ===== CONTENT ===== */
.video-content {
    color: #fff;
    max-width: 700px;
}

/* TAG */
.tag {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* TITLE */
.video-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

/* TEXT */
.video-content p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ddd;
}

/* BUTTON */
.video-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6b00;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.video-btn:hover {
    background: #e55a00;
}

/* ===== GLASS EFFECT (Premium) ===== */
.video-content {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .showroom-video {
        height: 350px;
    }

    .video-content h2 {
        font-size: 24px;
    }

    .video-content p {
        font-size: 14px;
    }
}
.site-breadcrumbservice::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--hero-overlay-color);
    opacity: 0.8;
    z-index: -1;
}
.banner-overlay-box {
    position: absolute;
    top: 50%;
    color: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
}
.site-breadcrumbservice h1 {
    color: #fff;
    font-size: 25px;
}
.site-breadcrumbservice h1 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}


.serviceaccordion {
  display: flex;
  width: 100%;
 overflow: hidden;
 max-height: 100vh;
}

/* PANELS */
.serviceaccordion .panel {
  flex: 1;
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: flex 0.5s ease;
  border-right: 1px solid #e2e2e2;
  
}

/* TEXT */
.serviceacccontent{ 
   position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;

  opacity: 0;
  transition: opacity 0.5s ease;
}
.serviceaccordion .panel h3 {
 
  color: #fff;
  
}
.serviceaccordion .panel p {
    
    color: #fff;
   font-size: 13px;
}

/* ACTIVE */
.serviceaccordion .panel.active {
  flex: 5;
}

.serviceaccordion .panel.active .serviceacccontent {
  opacity: 1;
}

.brand-section {
  background: linear-gradient(135deg, #f8f9fc, #eef1f7);
}

/* Left text styling */
.left-heading h1 {
  font-size: 32px;
  font-weight: 800;
}

.left-heading p {
  color: #666;
  font-size: 16px;
}

/* Brand Card */
.bimage {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}



/* Logo */
.bimage img {
  max-height: 70px;
  transition: all 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.8;
}
.choose-img img {
    border-radius: 15px;
}

