/* Banner */
.orbitWrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border-radius: 0px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	margin-top: 0;
}
.orbitTrack {
	display: flex;
	transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.orbitSlide {
	flex-shrink: 0;
	width: 100%;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.orbitSlide.active {
	opacity: 1;
	transform: scale(1);
}
.orbitSlide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	border-radius: 0px;
}
.orbitNav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 15px;
}
.orbitBtn {
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	border: none;
	font-size: 26px;
	width: 40px;
	height: 40px;
	padding: 0px 7px;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.3s ease;
}
.orbitBtn:hover {
	background: rgba(255, 255, 255, 1);
}
.info-boxes-slider{
	padding-top:50px;
}
.terms-section ul {
	padding-left: 20px;
    margin-bottom: 20px;
}
.terms-section ul li {
	margin-bottom: 8px;
    line-height: 1.6;
    letter-spacing: 1px;
    font-size: 18px;
    list-style: circle;
}
.terms-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}
.terms-section .text-primary {
    color: #007BFF;
}
.terms-section .text-secondary {
	color: #6c757d;
}
.terms-section .content-box {
	padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}
.terms-section .content-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.terms-section h1 {
	font-size: 2.5rem;
    font-weight: bold;
}
.terms-section h3 {
	font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.terms-section .highlight-box {
	background: #f8f9fa;
    border-left: 4px solid #f9d342;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 40px;
}
/* Feedback Section */
.feedback-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0ecf7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Feedback Widget */
.feedback-section-widget {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
/* Form Inputs and Labels */
.feedback--input {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.feedback-input-label {
    font-weight: 600;
    font-size: 15px;
    color: #1d1d1d;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.feedback-input-field,
.contact__form-textarea-field {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.feedback-input-field:focus,
.contact__form-textarea-field:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.2);
}
/* Textarea */
.contact__form-textarea-field {
    min-height: 120px;
    resize: vertical;
}
/* Submit Button */
.feedback-btn {
    background: linear-gradient(135deg, #004e89, #1580d1);
    color: #ffffff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
    letter-spacing: 0.5px;
}
.feedback-btn:hover {
    background: linear-gradient(135deg, #004e89, #1580d1);
    transform: scale(1.03);
}
/* Responsive */
@media (max-width: 576px) {
    .feedback-section-widget {
        padding: 30px 20px;
    }
    .feedback-btn {
        font-size: 15px;
        padding: 12px 20px;
    }
}