/*--------------------------------------------------------------
  # Service - Banner
  --------------------------------------------------------------*/
.service-banner {
    background: url(./../img/service-banner.jpg) center no-repeat fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.7);
}

.service-card {
    cursor: pointer;
    transition: 1s;
    height: 230px;
}

@media (min-width: 320px) and (max-width: 991px) {
    .service-card {
        height: auto;
    }
}

.service-card:hover {
    transform: scale(1.05);
}

.isotope-item {
    cursor: pointer;
    transition: 1s !important;
}

.isotope-item:hover {
    transform: scale(1.05) !important;
}

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    text-align: center;
    bottom: 120px;
    left: 10px;
    background-color: dodgerblue;
    color: white;
    border-radius: 50%;
    padding: 15px 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    z-index: 99;
  }
  
  .call-float i {
    font-size: 26px;
    line-height: 1;
  }

.whatsapp-float {
    position: fixed;
    bottom: 120px;
    right: 10px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 60px;
    height: 60px;
    text-align: center;
    z-index: 99;
  }
  
  .whatsapp-float i {
    font-size: 26px;
    line-height: 1;
  }

  @media (min-width: 290px) and (max-width: 575px) {
    .scroll-top {
        bottom: 95px;
    }
  }


  /* Car Fare */

  .car-card {
            border: none;
            border-radius: 0.75rem; /* 12px */
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            transition: transform 0.3s ease-in-out;
            overflow: hidden;
            background-color: #ffffff;
        }

        .car-card:hover {
            transform: scale(1.05);
        }

        .car-header {
            padding: 1.5rem; /* 24px */
            text-align: center;
        }
        
        .car-seats {
            font-size: 0.875rem; /* 14px */
            color: #6c757d; /* gray-500 */
            font-weight: 500;
        }

        .car-title {
            font-size: 1.25rem; /* 20px */
            font-weight: 700;
            color: #212529; /* gray-800 */
            margin-top: 0.25rem; /* 4px */
        }
        
        .car-image-container {
            padding-left: 1.5rem; /* 24px */
            padding-right: 1.5rem; /* 24px */
        }

        .car-image {
            width: 100%;
            height: 15rem; 
            object-fit: contain;
        }

        .car-details-footer {
            padding: 1.5rem; /* 24px */
            border-top: 1px solid #dee2e6; /* gray-200 */
            margin-top: 1rem; /* 16px */
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .price-info p {
            margin-bottom: 0.25rem; /* 4px */
            font-size: 0.875rem; /* 14px */
            color: #495057; /* gray-700 */
        }

        .book-now-btn {
            background-color: #ffc107; /* yellow-400 */
            color: #000000;
            font-weight: bold;
            padding: 0.5rem 1.25rem; /* 8px 20px */
            border-radius: 0.5rem; /* 8px */
            border: none;
            transition: background-color 0.3s;
        }

        .book-now-btn:hover {
            background-color: #000000; /* yellow-500 */
        }