@charset "utf-8";
/* CSS Document */

.form
{
   width: 100%;
}


/* Main Form Styling */
.agileits_reservation {
     background: linear-gradient(to right, #2f4ea2, #5ea3e4, #f0d23b);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Input Field Styling */
.agileits_reservation .book_date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 1 15%; /* 15% width for each field to show in one line */
    position: relative;
}

/* Input Fields (Check-In, Check-Out, etc.) */
.agileits_reservation input[type="text"],
.agileits_reservation select {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    margin-bottom: 10px;
}

/* Focus effect on input fields */
.agileits_reservation input[type="text"]:focus,
.agileits_reservation select:focus {
    outline: none;
    border-color: #0066b3; /* Focused border color */
}

/* Placeholder styling */
.agileits_reservation input[type="text"]::placeholder {
    color: #aaa;
}

/* Calendar Icon Inside Input */
.agileits_reservation .book_date span em.bi-calendar-fill {
    font-size: 18px;
    color: #0066b3; /* Calendar icon color */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Custom Dropdown Arrow Inside Select */
.agileits_reservation select {
    appearance: none;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Down_Arrow_Icon.svg/500px-Down_Arrow_Icon.svg.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 35px; /* Adjust padding for icon space */
}

/* Book Now Button Styling */
.agileits_reservation .booknowtrack {
    background-color: #0066b3;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1 1 20%; /* Button gets 20% width */
       margin-top: 0px;
}

.agileits_reservation .booknowtrack:hover {
    background-color: #00509e;
}

/* Media Query for Mobile and Tablets */
@media (max-width: 768px) {
    /* Stacking form fields vertically for smaller screens */
    .agileits_reservation {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .agileits_reservation .book_date {
        width: 100%;
        flex: 1;
    }

    .agileits_reservation .booknowtrack {
        width: 100%;
    }

    /* Input Fields */
    .agileits_reservation input[type="text"],
    .agileits_reservation select {
        font-size: 12px; /* Smaller font size for mobile */
        padding: 8px;
    }

    .agileits_reservation .book_date span em.bi-calendar-fill {
        font-size: 16px;
    }

    .agileits_reservation .booknowtrack {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Media Query for Smaller Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .agileits_reservation input[type="text"],
    .agileits_reservation select {
        font-size: 12px;
        padding: 8px;
    }

    .agileits_reservation .booknowtrack {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Custom Grid System */
.col-lg-2 {
    width: 16.6667%!important; /* 2 out of 12 columns for large screens */
    padding: 0 15px; /* Add horizontal padding if necessary */
	float:left;
}

/*
.col-sm-4 {
    width: 33.3333%!important; /* 4 out of 12 columns for medium screens */
    padding: 0 15px; /* Add horizontal padding if necessary */
}*/

/*
.col-xs-12 {
    width: 100% !important;
    padding: 0 15px;
}

/*

/* Media Queries for Responsive Design */
@media (max-width: 1199px) {
    /* For medium screens (between 576px and 1199px), col-sm-4 will be active */
    .col-sm-4 {
        width: 33.3333%; /* 4 columns for small screens */
    }
}

@media (max-width: 768px) {
    .col-sm-4 {
        width: 33.3333% !important;
        padding: 0 15px;
    }
	
	    .desktop-nav {
        display: flex;
        margin-right: 14px;
        font-size: 11px;
    }
	
	.header-font {

    font-size: 17px !important;

}
}

@media (max-width: 375px) {
    .col-xs-12 {
        width: 100% !important;
        padding: 0 15px;
    }
}

.video-img-bg {
    --tw-bg-opacity: 1;
    background: url(../img/video.jpg) center center / cover no-repeat !important;
    background-attachment: fixed !important;
}