.custom-select-1 {
    position: relative;
    margin-bottom: 1rem;
}
.custom-select-1 select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-bottom: 2px solid #800040 !important;
    border-right: none !important;
    border-left: none !important;
    border-top: none !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background-image: none !important; /* Remove default arrow */
    width: 100%;
}
.custom-select-1 select:focus {
    outline: none;
    border-bottom-color: #ffc107 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.custom-select-1 i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #800040;
    pointer-events: none;
    z-index: 2;
}
.custom-select-1 select:hover {
    background-color: #f9f9f9;
}

/* Mobile optimization */
@media (max-width: 767px) {
    .custom-select-1 {
        margin-bottom: 1.5rem;
    }
    .custom-select-1 select {
        font-size: 16px !important; /* Prevent zoom on iOS */
        padding: 0.75rem 1rem !important;
        height: auto !important;
    }
    .custom-select-1 i {
        right: 12px;
    }
    .form-group label {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    .custom-select-1 select {
        padding-right: 30px !important;
    }
}


@media (max-width: 768px) {
    .custom-css-carousel img {
        height: 60vh !important;
        object-fit: cover !important;
    }
}



