.hero-1 {
    padding: 0px 0 !important;
    overflow: hidden;
    background-color: #efefef;
}
@media screen and (max-width: 1200px) {
    .header-one__item .header-wrapper .logo {
        padding: 0px 0 !important;
    }
}
.header-one__logo {
    padding: 0px 60px !important;
    background-color: #050605;
}
/* Mobile styles */
.hero-1 .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 0px;
}
.header-section {
    padding: 0px !important;
}
/* Desktop styles */
@media (min-width: 992px) {
    .hero-1 .hero-image img {
        width: 100%;
        height: 500px;
        border-radius: 0px;
    }
    
    .header-one__item .header-wrapper .logo {
        padding: 0px !important;
    }
}

@media (max-width: 1600px) {
    .hero-1 .container-fluid {
        padding: 0 0px !important;
    }
    .hero-1 .hero-slider-items {
        margin-left: 0px;
    }
    .col-lg-5 {
        margin-top: 0px !important;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
}
@media (min-width: 992px) {
    .col-lg-7 {
        margin-top: 0px !important;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .col-lg-5 {
        margin-top: 0px !important;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
}
/* Reset any conflicting styles */
.custom-swiper-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.custom-swiper {
    width: 100% !important;
    height: 100% !important; /* Adjust as needed */
    overflow: hidden !important;
}

.custom-swiper .custom-slide {
    width: 100% !important;
    height: 100% !important;
}

.custom-swiper .custom-slide-img {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.custom-swiper .custom-slide-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.custom-swiper .custom-slide-link {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    background: rgba(0,0,0,0.7) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    z-index: 10 !important;
}

/* Pagination */
.custom-swiper-pagination {
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.custom-swiper-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: white !important;
    opacity: 0.5 !important;
    margin: 0 5px !important;
}

.custom-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #007aff !important;
}

/* Navigation buttons */
.custom-swiper-button-next,
.custom-swiper-button-prev {
    color: white !important;
    background: rgba(0,0,0,0.5) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.custom-swiper-button-next:after,
.custom-swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold !important;
}

.custom-swiper-button-next {
    right: 20px !important;
}

.custom-swiper-button-prev {
    left: 20px !important;
}

.pb-65 {
    padding-bottom: 30px;
}
.pt-130 {
    padding-top: 30px;
}

/* Section Styles */
.vehicle-selection {
    padding: 70px 0 50px;
    background-color: #fff;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    color: #007326;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.vehicle-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.vehicle-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    text-align: center;
}

.vehicle-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #282828;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.vehicle-card:hover .vehicle-btn {
    background-color: #007326;
}

.vehicle-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .vehicle-selection {
        padding: 60px 0 50px;
    }
    
    .vehicle-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Banner grid layout */
.banner-grids {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.banner-column {
    flex: 1 0 25%;
    min-width: 250px;
    padding: 0;
    position: relative;
}

@media (max-width: 992px) {
    .banner-column {
        flex: 1 0 50%;
    }
}

@media (max-width: 576px) {
    .banner-column {
        flex: 1 0 100%;
    }
}

/* Banner card styles */
.banner-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #282828;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.banner-btn::before {
    content: attr(data-hover-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #282828;
    color: white;
    transition: transform 0.3s ease;
}

.banner-card:hover .banner-btn::before {
    transform: translateY(-100%);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 1;
}

.banner-card:hover .banner-overlay {
    opacity: 1;
}

/* Specific banner height adjustments */
.tall-banner {
    height: 630px;
}

.short-banner {
    height: 320px;
}

@media (max-width: 768px) {
    .tall-banner, .short-banner {
        height: auto;
        aspect-ratio: 3/4;
    }
}

/* Partners Section Styles */
.partners-section {
    padding: 40px 0;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Carousel Styles */
.partners-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 0;
}

.partner-item {
    flex: 0 0 calc(16.666% - 17px);
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .partner-item {
    flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 768px) {
    .partners-section {
    padding: 30px 0;
    }
    
    .partner-item {
    flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .partner-item {
    flex: 0 0 calc(50% - 10px);
    }
}

/* Hide scrollbar but keep functionality */
.partners-carousel::-webkit-scrollbar {
    display: none;
}

/* Base Styles */
.product-carousel-section {
    padding: 70px 0;
    background-color: #fff;
  }
  
  /* Product Card Styles */
  .product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  }
  
  .product-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  
  .product-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.05);
  }
  
  .product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
  }
  
  .sale-badge {
    background-color: #cf987e;
  }
  
  .discount-badge {
    background-color: #282828;
  }
  
  .soldout-badge {
    background-color: #999;
  }
  
  .product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-actions {
    transform: translateY(0);
  }
  
  .product-actions button {
    background: none;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    color: #282828;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  .product-actions button:hover {
    color: #cf987e;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .product-title a {
    color: #282828;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .product-title a:hover {
    color: #cf987e;
  }
  
  .product-rating {
    margin-bottom: 10px;
    color: #ffb300;
  }
  
  .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #282828;
  }
  
  .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
  }
  
  /* Carousel Navigation */
  .carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
  }
  
  .carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .carousel-dots button.active {
    background-color: #cf987e;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .product-card {
      flex: 0 0 calc(50% - 10px);
    }
  }
  
  @media (max-width: 768px) {
    .product-carousel-section {
      padding: 50px 0;
    }
    
    .product-card {
      flex: 0 0 calc(100% - 10px);
    }
  }

