.twitter {
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 14px;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.twitter:hover {
  color: #FF7D6D;
  text-decoration: none;
}

span {
  font-style: italic;
  display: block;
}

img {
  max-width: 100%;
}
/* Floating Social Media Bar Style Starts Here */

.fl-fl {
  background: #000000;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 190px;
  position: fixed;
  right: -145px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.fa {
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  width: 40px;
  margin-left: 8px;
}

.fl-fl:hover {
  right: 0;
}

.fl-fl a {
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px!important;
  vertical-align: top!important;
}

.float-fb {
  top: 160px;
}

.float-tw {
  top: 215px;
}

.float-gp {
  top: 270px;
}

.float-rs {
  top: 325px;
}

.float-ig {
  top: 380px;
}

.float-pn {
  top: 435px;
}
/* Floating Social Media Bar Style Ends Here */














.hero-slider {
    width: 100%;
    position: relative;
}

.hero {
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #111;
    color: #fff;
    text-align: left;
    box-sizing: border-box;
}

/* Hero Variations */


.hero-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.2);
    border: 1px solid #ffcc00;
    color: #ffcc00;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #ffcc00;
    margin-bottom: 15px !important;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

.btn-outline:hover {
    background: #ffcc00;
    color: #000000;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.15rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 35px 0;
    margin-top: -5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 1.6rem;
    color: #ffcc00;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animated Counter */
.stat-number.counting {
    animation: countPulse 0.3s ease;
}

@keyframes countPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: -20px auto 40px;
}

.section-badge {
    display: inline-block;
    background: #ffcc00;
    color: #000000;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-main-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #ffcc00;
}

.service-main-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-main-icon i {
    font-size: 2rem;
    color: #ffcc00;
}

.service-main-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 15px;
}

.service-main-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    padding: 8px 0;
    color: #444;
    font-size: 0.95rem;
}

.service-features li i {
    color: #28a745;
    margin-right: 10px;
}

/* Body Shop Section */
.bodyshop-section {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 80px 0;
}

.bodyshop-header {
    text-align: center;
    margin-bottom: 50px;
}

.bodyshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.bodyshop-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bodyshop-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #ffcc00;
}

.bodyshop-icon {
    width: 70px;
    height: 70px;
    background: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bodyshop-icon i {
    font-size: 1.8rem;
    color: #000000;
}

.bodyshop-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bodyshop-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.bodyshop-card ul {
    list-style: none;
    padding: 0;
}

.bodyshop-card ul li {
    color: #aaa;
    padding: 5px 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.bodyshop-card ul li::before {
    content: "✓";
    color: #ffcc00;
    position: absolute;
    left: 0;
}

.bodyshop-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 12px;
    border: 1px dashed #ffcc00;
}

.bodyshop-cta h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.bodyshop-cta p {
    color: #ccc;
    margin-bottom: 25px;
}

/* Featured Cars Section */
.featured-cars-section {
    padding: 80px 0;
    background: #fff;
}

.car-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.car-tab {
    padding: 12px 30px;
    border: 2px solid #ddd;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.car-tab:hover,
.car-tab.active {
    background: #000000;
    border-color: #000000;
    color: #fff;
}

.car-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.car-badge.new {
    background: #28a745;
    color: #fff;
}

.car-badge.used {
    background: #17a2b8;
    color: #fff;
}

.car-badge.auction {
    background: #dc3545;
    color: #fff;
}

.car-card {
    position: relative;
}

.car-specs i {
    color: #ffcc00;
    margin-right: 5px;
}

.car-price.starting {
    color: #dc3545;
    font-size: 1.2rem;
}

.btn-auction {
    background: #dc3545;
}

.btn-auction:hover {
    background: #c82333;
}

.view-all-cars {
    text-align: center;
    margin-top: 40px;
}

/* Auction Section */
.auction-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.auction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.auction-info {
    padding-right: 40px;
}

.auction-info h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.auction-info>p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.auction-features {
    margin-bottom: 30px;
}

.auction-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.auction-feature i {
    color: #28a745;
    font-size: 1.2rem;
}

.auction-feature span {
    color: #444;
    font-weight: 500;
}

.next-auction {
    background: #000000;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.next-auction h4 {
    color: #ffcc00;
    margin: 0;
    font-size: 0.9rem;
    white-space: nowrap;
}

.auction-timer {
    display: flex;
    gap: 8px;
    flex: 1;
}

.timer-box {
    background: #2d2d2d;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    min-width: 50px;
}

.timer-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.timer-label {
    font-size: 0.6rem;
    color: #aaa;
    text-transform: uppercase;
}

.auction-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.auction-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.why-choose-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffcc00;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffcc00 0%, #e6b800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-icon i {
    font-size: 2.2rem;
    color: #000000;
}

.why-choose-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: #666;
    line-height: 1.7;
}

/* Process Section Enhanced */
.process-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.process-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.process-tab-btn {
    padding: 12px 25px;
    border: none;
    background: #2d2d2d;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.process-tab-btn:hover,
.process-tab-btn.active {
    background: #ffcc00;
    color: #000000;
}

.process-content {
    display: none;
}

.process-content.active {
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.process-steps .step {
    padding: 25px 20px;
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.brands-slider {
    margin-top: 40px;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 20s linear infinite;
}

.brand-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    padding: 0 50px 50px;
}

.testimonial-slider .swiper-slide {
    height: auto;
}

.testimonial-slider .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #ffcc00;
    margin-bottom: 15px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-slider .swiper-button-prev,
.testimonial-slider .swiper-button-next {
    color: #ffcc00;
    background: #000000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial-slider .swiper-button-prev::after,
.testimonial-slider .swiper-button-next::after {
    font-size: 18px;
}

.testimonial-slider .swiper-button-prev {
    left: 0;
}

.testimonial-slider .swiper-button-next {
    right: 0;
}

.testimonial-slider .swiper-pagination-bullet {
    background: #000000;
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: #ffcc00;
    opacity: 1;
}

.testimonial-pagination {
    bottom: 0 !important;
}

/* CTA Section Enhanced */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn i {
    margin-right: 8px;
}

/* Contact Enhancements */
.contact-form h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 25px;
}

.contact-map {
    margin-top: 20px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Updates */
@media (max-width: 1200px) {

    .services-main-grid,
    .bodyshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .testimonial-slider {
        padding: 0 40px 50px;
    }
}

@media (max-width: 992px) {
    .auction-content {
        grid-template-columns: 1fr;
    }

    .auction-info {
        padding-right: 0;
    }

    .auction-info h2 {
        font-size: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-item:nth-child(3) {
        border-right: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-slider {
        padding: 0 30px 50px;
    }

    .testimonial-slider .swiper-button-prev,
    .testimonial-slider .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .testimonial-slider .swiper-button-prev::after,
    .testimonial-slider .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
        height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 10px !important;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero .app-cta h4 {
        font-size: 0.95rem;
        margin-bottom: 10px !important;
    }

    .hero .app-buttons {
        gap: 10px;
    }

    .hero .app-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .hero .app-btn i {
        font-size: 20px;
    }

    .hero .app-btn span small {
        font-size: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 8px;
    }

    .stat-item:nth-child(3),
    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-icon {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .services-main-grid,
    .bodyshop-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .services-overview,
    .bodyshop-section,
    .featured-cars-section,
    .auction-section,
    .why-choose-section,
    .testimonials {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin: 30px 0 20px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin: -10px auto 30px;
    }

    .service-main-card,
    .bodyshop-card {
        padding: 25px 20px;
    }

    .service-main-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-main-icon i {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .car-tabs {
        gap: 8px;
        padding: 0 10px;
    }

    .car-tab {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .auction-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timer-box {
        min-width: 45px;
        padding: 6px 10px;
    }

    .timer-value {
        font-size: 1rem;
    }

    .timer-label {
        font-size: 0.55rem;
    }

    .next-auction {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .next-auction h4 {
        margin-bottom: 5px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 50px 0;
    }

    .process-header h2 {
        font-size: 1.8rem;
    }

    .process-tab-buttons {
        gap: 8px;
    }

    .process-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .step {
        padding: 20px 15px;
    }

    .step h3 {
        font-size: 1.1rem;
    }

    .brands-section {
        padding: 40px 0;
    }

    .brand-item {
        width: 80px;
        height: 50px;
    }

    .brand-item img {
        max-height: 60px;
    }

    .testimonial-slider {
        padding: 0 15px 50px;
    }

    .testimonial-slider .swiper-button-prev,
    .testimonial-slider .swiper-button-next {
        display: none;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text p {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact {
        padding: 50px 0;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .why-choose-card {
        padding: 25px 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .why-icon i {
        font-size: 1.8rem;
    }

    .bodyshop-cta {
        padding: 25px 20px;
    }

    .bodyshop-cta h3 {
        font-size: 1.4rem;
    }

    .auction-image {
        margin-top: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        margin-top: 0;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
        height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 8px !important;
    }

    .hero-content {
        padding: 0 5px;
    }

    .hero .app-cta {
        margin-top: 15px;
    }

    .hero .app-cta h4 {
        font-size: 0.85rem;
        margin-bottom: 8px !important;
    }

    .hero .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero .app-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 180px;
        justify-content: center;
    }

    .hero .app-btn i {
        font-size: 18px;
    }

    .hero .app-btn span small {
        font-size: 9px;
    }

    /* Swiper navigation for mobile */
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }

    .hero-slider .swiper-pagination {
        bottom: 10px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .stats-section {
        padding: 25px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 5px;
    }

    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        border-bottom: none;
    }

    .stat-item:nth-child(5) {
        grid-column: 1 / -1;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0;
    }

    .stat-icon {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .car-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .car-tab {
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .car-details h3 {
        font-size: 1.1rem;
    }

    .car-price {
        font-size: 1.2rem;
    }

    .car-specs {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 8px;
    }

    .auction-info h2 {
        font-size: 1.5rem;
    }

    .auction-info>p {
        font-size: 0.95rem;
    }

    .auction-feature {
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .timer-box {
        min-width: 40px;
        padding: 5px 8px;
    }

    .timer-value {
        font-size: 0.9rem;
    }

    .process-tab-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 0.9rem;
    }

    .author-image {
        width: 40px;
        height: 40px;
    }

    .testimonial-author h4 {
        font-size: 0.95rem;
    }

    .testimonial-author p {
        font-size: 0.8rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        background: #f8f9fa;
        padding: 20px 15px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 12px;
        width: 50px;
        height: 50px;
        background: #000000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-icon i {
        color: #ffcc00;
    }

    .info-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .info-item p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
    }

    .contact-form {
        background: #f8f9fa;
        padding: 25px 20px;
        border-radius: 12px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 0.95rem;
        padding: 12px;
        margin-bottom: 15px;
    }

    .contact-form textarea {
        height: 120px;
    }

    .contact-form .btn {
        width: 100%;
    }

    .contact-map iframe {
        height: 180px;
    }

    .contact .section-title {
        margin-bottom: 10px;
    }

    .contact .section-subtitle {
        margin-bottom: 25px;
    }

}

p {
    margin: 10px 0;
}

/* App Download CTA */
.app-cta {
    margin-top: 235px;
}

.app-cta-text {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-btn i {
    font-size: 26px;
}

.app-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.app-btn span small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

/* Android Button */
.app-btn.android {
    background: #ffcc00;
    color: #000;
}

/* iOS Button */
.app-btn.ios {
    background: #000;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.hero .app-cta {
    text-align: center;
}

.hero .app-buttons {
    justify-content: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    /*background-color: #25d366;*/
    border-radius: 50%;
    /*padding: 12px;*/
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    display: block;
}

/* Hero Section */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1283&q=80') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card1 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background: #000000;
    padding: 30px 0;
    font-size: 3rem;
    color: #ffcc00;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}


/* Process Section */
.process-section {
    background: #000000;
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ffcc00;
    color: #000000;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffcc00;
}


.contact-info-a {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info-a h3 {
    color: #000000;
    margin-bottom: 15px;
}

.contact-info-a p {
    margin-bottom: 10px;
}

.contact-info-a a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-info-a a:hover {
    text-decoration: underline;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: white;
    /*margin-bottom: 60px;*/
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


/* Download App Section */
.download-app-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.download-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffcc00" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.download-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-info {
    color: #fff;
}

.app-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid #ffcc00;
    color: #ffcc00;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-info h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.app-info h2 span {
    color: #ffcc00;
}

.app-tagline {
    font-size: 1.3rem;
    color: #ffcc00;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-description {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.app-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffcc00;
    transition: all 0.3s ease;
}

.app-feature-item:hover {
    background: rgba(255, 204, 0, 0.1);
    transform: translateX(5px);
}

.app-feature-item i {
    color: #ffcc00;
    font-size: 1.1rem;
    width: 20px;
}

.app-feature-item span {
    font-size: 0.95rem;
    color: #fff;
}

.app-download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn i {
    font-size: 28px;
}

.app-store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-store-btn small {
    font-size: 11px;
    opacity: 0.9;
}

.app-store-btn span {
    font-size: 18px;
    font-weight: 600;
}

.app-store-btn.play-store {
    background: #ffcc00;
    color: #000;
}

.app-store-btn.play-store:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.app-store-btn.apple-store {
    background: #fff;
    color: #000;
}

.app-store-btn.apple-store:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.app-stats {
    display: flex;
    gap: 40px;
}

.app-stat {
    text-align: center;
}

.app-stat strong {
    display: block;
    font-size: 1.8rem;
    color: #ffcc00;
    margin-bottom: 5px;
}

.app-stat span {
    font-size: 0.9rem;
    color: #aaa;
}

/* Phone Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 0 0 2px #333;
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 10px;
    position: relative;
}

.phone-notch::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.phone-screen {
    width: 100%;
    height: calc(100% - 35px);
    background: #000;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.4; */
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.app-logo-overlay {
    text-align: center;
    margin-bottom: 30px;
}

.logo-text {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffcc00;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo-tagline {
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
}

.app-preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.preview-item {
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 12px 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.phone-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    z-index: 1;
}

/* Download App Section Responsive */
@media (max-width: 992px) {
    .download-app-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .app-info h2 {
        font-size: 2.2rem;
    }

    .app-features-list {
        max-width: 500px;
        margin: 0 auto 35px;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .app-stats {
        justify-content: center;
    }

    .app-mockup {
        order: -1;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .download-app-section {
        padding: 60px 0;
    }

    .app-info h2 {
        font-size: 1.8rem;
    }

    .app-tagline {
        font-size: 1.1rem;
    }

    .app-description {
        font-size: 0.95rem;
    }

    .app-features-list {
        grid-template-columns: 1fr;
    }

    .app-feature-item {
        justify-content: center;
    }

    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-store-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .app-stats {
        gap: 25px;
    }

    .app-stat strong {
        font-size: 1.5rem;
    }

    .phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 35px;
    }

    .phone-notch {
        width: 80px;
        height: 18px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .logo-text {
        font-size: 22px;
    }

    .preview-item {
        font-size: 11px;
        padding: 8px;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffcc00;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 99;
}

.back-to-top:hover {
    background: #e6b800;
    transform: translateY(-5px);
}

/* Privacy Policy Content */
.privacy-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 40px 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
}

.privacy-header p {
    color: #666;
    font-size: 1.1rem;
}

.last-updated {
    text-align: right;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffcc00;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #000000;
    margin: 25px 0 15px;
}

.policy-section p {
    margin-bottom: 15px;
    color: #444;
}

.policy-section ul {
    margin: 15px 0 15px 40px;
}

.policy-section li {
    margin-bottom: 10px;
    color: #444;
}



/* Delete acount Styles */
.deletion-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 40px 0;
}

.deletion-header {
    text-align: center;
    margin-bottom: 40px;
}

.deletion-header h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
}

.deletion-header p {
    color: #666;
    font-size: 1.1rem;
}

.method-section {
    margin-bottom: 50px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ffcc00;
}

.method-section h2 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.method-section h3 {
    font-size: 1.4rem;
    color: #000000;
    margin: 25px 0 15px;
}

.method-section p {
    margin-bottom: 15px;
    color: #444;
}

.method-section ul {
    margin: 15px 0 15px 40px;
}

.method-section li {
    margin-bottom: 10px;
    color: #444;
}

.step-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.step-number {
    display: inline-block;
    background: #ffcc00;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-right: 10px;
}

.note-box {
    background: #fff9e6;
    border-left: 4px solid #ffcc00;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #000000;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffcc00;
    z-index: 101;
}

.logo span {
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #ffcc00;
}

nav ul li a.nav-link.active {
    color: #ffcc00;
}

nav ul li a.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffcc00;
    border-radius: 2px;
}

.contact-info-top {
    display: flex;
    align-items: center;
}


.phone {
    background-color: #ffcc00;
    color: #000000;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #ffcc00;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.slide1{
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/slide1.jpg') no-repeat center center/cover;
}

.slide2 {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/slide2.jpg') no-repeat center center/cover;
}

.slide3 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slide3.jpg') no-repeat center center/cover;
}

.slide4 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slide4.jpg') no-repeat center center/cover;
}

.slide5 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slide2.jpg') no-repeat center center/cover;
}

.hero {
    /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1537005081207-04f90e3ba640?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1674&q=80') no-repeat center center/cover;*/
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #000000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

/* Featured Cars */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 2.2rem;
    color: #000000;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffcc00;
    margin: 10px auto;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.car-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.car-card:hover {
    transform: translateY(-10px);
}

.car-image {
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-details {
    padding: 20px;
}

.car-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.car-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

/* Services */
.services {
    background-color: #000000;
    color: white;
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #000000;
}



/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text:before {
    content: "";
    font-size: 3rem;
    color: #ffcc00;
    position: absolute;
    left: -10px;
    top: -15px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info-top {
    display: flex;
    flex-direction: column;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-right: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffcc00;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #ffcc00;
    color: #000000;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 0.9rem;
}

.mobile-phone {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    .services-hero {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /*nav ul {*/
    /*    display: none;*/
    /*}*/

    .services-intro h2 {
        font-size: 2rem;
    }

    .deletion-container {
        padding: 25px;
    }

    .deletion-header h1 {
        font-size: 2rem;
    }

    .method-section {
        padding: 15px;
    }

    .method-section h2 {
        font-size: 1.5rem;
    }

    .method-section h3 {
        font-size: 1.2rem;
    }





    .header-content {
        flex-direction: row;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #000000;
        padding: 80px 20px 20px;
        transition: right 0.3s;
        z-index: 100;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
    }

    .contact-info-top {
        display: none;
    }


    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }



    .mobile-phone {
        display: block;
        text-align: center;
        margin-top: 20px;
    }



    .privacy-container {
        padding: 25px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
        min-height: auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}