.benefits {
    background: #0F0F3708;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 10px;
}

.wizard,
.wizard .nav-tabs,
.wizard .nav-tabs .nav-item {
    position: relative;
}

.wizard .nav-tabs:after {
    content: "";
    width: 80%;
    border-bottom: solid 2px #ccc;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: 38%;
    z-index: -1;
}

.wizard .nav-tabs .nav-item .nav-link {
    width: 70px;
    height: 70px;
    background: white;
    border: 2px solid #ccc;
    color: #ccc;
    z-index: 10;
}

.wizard .nav-tabs .nav-item .nav-link:hover {
    color: #333;
    border: 2px solid #333;
}

.wizard .nav-tabs .nav-item .nav-link.active {
    background: #fff;
    border: 2px solid #32B4DC;
    color: #32B4DC;
}

.wizard .nav-tabs .nav-item .nav-link:after {
    content: " ";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: #32B4DC;
    transition: 0.1s ease-in-out;
}

.nav-tabs .nav-item .nav-link.active:after {
    content: " ";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: #32B4DC;
}


.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wizard .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.wizard .card-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.wizard .card-img-top {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wizard .card:hover .card-img-top {
    transform: scale(1.1);
}

.wizard .card-body {
    padding: 1.5rem;
    background-color: #ffffff;
}

.wizard .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.wizard .card.selected {
    border: 3px solid #32B4DC;
}

.wizard .card.selected .card-body {
    background-color: #ebf5fb;
}

.wizard .btn-select {
    background-color: #32B4DC;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.wizard .btn-select:hover {
    background-color: rgb(33, 109, 159);
    color: #fff;
}

/* Example quote */

.custom-card {
    background: linear-gradient(145deg, #e4e4e4, #e6e6e6);
    border-radius: 20px;
    box-shadow: 20px 20px 60px #eaeaea, -20px -20px 60px #ffffff;
    margin: 40px 0;
}

.component-card {
    background-color: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-custom {
    background-color: #4CAF50;
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-custom:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.product-image {
    border-radius: 10px;
    object-fit: cover;
}


/* Request Form */


.form-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
}

.form-title {
    border-bottom: 2px solid #32B4DC;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Drive Systems */

.driveSystems-banner {
    background: linear-gradient(120deg, #0A3F60, #32B4DC, #6c757d);
    color: white;
    padding: 50px;
}


.card-img-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.info-img {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.info-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-text {
    font-size: 1rem;
    color: #6c757d;
}

.info-button {
    background-color: #007bff;
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.info-button:hover {
    background-color: #0056b3;
}