/* Gradient Overlay for the Image Section */
.overlay-bg {
    z-index: 1;
    background: linear-gradient(90deg, rgb(255, 255, 255) 20%, transparent 75%);
}

/* Background Image Settings */
.img-bg {
    object-fit: cover;
    z-index: 0;
}

/* Rounded Box with Text at the Bottom */
.rounded-box {
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    z-index: 2;
}

/* Title in Rounded Box */
.overlay-title {
    font-size: 1.5rem;
    background: linear-gradient(to right, #FAC43A, #BC3626);
    -webkit-background-clip: text;
    color: transparent;
}

/* University Text Under Rounded Box */
.love-icon {
    font-size: 1rem;
}

/* Copyright at the Bottom-Top-Center */
.copyright {
    top: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Button Gradient Style */
.btn-gradient {
    background: linear-gradient(to right, #FAC43A, #F0AC37, #D6712E, #BC3626);
    border: none;
    color: white;
    font-size: 1.25rem;
    border-radius: 50px;
    padding: 10px 20px;
}

.btn-outline-gradient {
    background: transparent;
    color: #DC3545;
    border-radius: 50px;
    padding: 10px 20px;
    background-image: linear-gradient(white, white), linear-gradient(to right, #FAC43A, #BC3626);
    background-clip: padding-box, border-box;
    background-origin: border-box;
    border: 2px solid transparent;
}

.btn-outline-gradient:hover {
    color: white;
    background: linear-gradient(to right, #FAC43A, #BC3626);
}

.small-form {
    max-width: 590px;
    margin: auto;
}

.input-group {
    border-radius: 20px;
}

.input-group .form-control {
    border-radius: 20px 0 0 20px;
}

.input-group .input-group-text {
    border-radius: 0 20px 20px 0;
}


.input-group-text {
    background-color: rgba(255, 255, 255, 0.8);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    padding-right: 30px; /* Add padding to prevent text overlap with the arrow */
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust based on your padding */
    transform: translateY(-50%);
    pointer-events: none; /* Prevent clicking on the arrow */
}

