#electric-two-wheeler-showroom {
    display: flex;
    flex-direction: column; /* Stack flex items vertically */
    justify-content: center;
   /* background-image: linear-gradient(45deg, #85FFBD 0%, #f2f2ef 100%); */
    margin-top: 95px;
    
}



body {
 /*  background-color: #ffffff; 
 background-image: linear-gradient(45deg, #62ffab 0%, #ffffff 100%); */
 background-color: #ffffff;
}







.container {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0;
    flex: 100%;
}
.left-section h2 {
    text-align: left; /* Align text to the left */
    margin-left: 0; /* Reset any default margins */
    margin-top: 20px; /* Add margin as needed */
}

.left-section {
    flex: 50%;
    padding: 20px;
    padding-top: 0px;
    
}

.right-section {
    flex: 50%;
    padding: 20px;
    padding-top: 0px;
   
}
.book-section{
    text-align: center; /* Align content in the center */
    margin-top: 10px; /* Add margin to separate from the container */
}

#book-now-btn {
    font-size: 1.2em; /* Enlarge font size */
    padding: 15px 30px; /* Increase padding for better visibility */
    background-color: #007bff; /* Change button background color */
    color: #fff; /* Text color */
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition effect */
    animation: pulse 2s infinite alternate; /* Apply the pulse animation */
}

#book-now-btn:hover {
    background-color: #0056b3; /* Darker color on hover */
    transform: scale(1.1); /* Enlarge button on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

#vehicle-thumbnails h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
    text-align: left;
    margin-left: 0; /* Reset any default margins */
}

#selected-color {
    opacity: 0;
}

.vehicle-selection {
    margin-bottom: 20px;
}

.vehicle-selection .hide {
    opacity: 0;
    pointer-events: none;
}

.hide {
    opacity: 0;
    pointer-events: none;
}


#color-thumbnails img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

#vehicle-thumbnails img {
    width: 100px;
    height: 100px;
    
    border-radius: 50%;
    margin: 7px;
    cursor: pointer;
}

.vehicle-display {
    margin-top: 20px;
    /*border: 1px solid #ccc; */
    width: 700px; /* Set your desired fixed size */
    height: 700px; /* Set your desired fixed size */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -10px;
}

#vehicle-image {
    width: 700px;
    height: auto;
    max-height: 700px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#vehicle-image:hover {
    transform: scale(1.05);
}

@keyframes borderAnimation {
    0% {
        border-width: 2px;
    }
    50% {
        border-width: 4px;
    }
    100% {
        border-width: 2px;
    }
}


.selected {
    border: 2px solid #10ef2ad3; /* Change the color to your preference */
    animation: borderAnimation 1s infinite;
    box-sizing: border-box;

}

/* Popup Form Styles */
.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
   
}

.popup-content {
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
}

.input-bx{
    position: relative;
    width: 300px;
}

.input-bx input{
    width: 100%;
    padding: 10px;
    border: 2px solid #7f8fa6;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    transition: 0.6s;
}

.input-bx span{
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    font-size: 1rem;
    color: #7f8fa6;
    text-transform: uppercase;
    pointer-events: none;
    transition: 0.6s;
}

.input-bx input:valid ~ span,
.input-bx input:focus ~ span{
    color: #3742fa;
    transform: translateX(10px) translateY(-7px);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0 10px;
    background: #fff;
    letter-spacing: 0.1rem;
}

.input-bx input:valid,
.input-bx input:focus{
    color: #3742fa;
    border: 2px solid #3742fa;
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #f44336;
}


#booking-form {
     /* Add some space above the form */
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 25vh;
   flex-direction: column;
   gap: 40px;
}

#booking-form input[type="submit"] {
    background-color: #007bff; /* Button background color */
    color: #fff; /* Button text color */
    padding: 10px 20px; /* Button padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition effect */
}

#booking-form input[type="submit"]:hover {
    background-color: #0056b3; /* Darker color on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

#booking-form input[type="submit"]:focus {
    outline: none; /* Remove outline on focus */
}

#booking-form input[type="submit"]:active {
    transform: scale(0.95); /* Reduce size when clicked */
}




@media screen and (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack flex items vertically on smaller screens */
    }

    .left-section,
    .right-section {
        flex: 100%; /* Take full width on smaller screens */
        padding: 20px;
        padding-top: 0px;
        text-align: center; /* Center-align content */
    }

    .vehicle-display {
        width: auto; /* Auto width for flexibility */
        height: auto; /* Auto height for flexibility */
    }

    #vehicle-image {
        max-width: 100%; /* Maximum width of the image */
        max-height: 300px; /* Maximum height of the image */
    }

    .vehicle-selection {
        margin-top: 20px; /* Add margin between image and vehicle selector */
    }

    .book-section {
        margin-top: 20px; /* Add margin between vehicle selector and book button */
    }

    .input-bx{
        width: auto;
    }

}

