/* ================= Root Variables ================= */
:root {
	--primary-color: #fbfcfd;
	--secondary-color: #53b024;
	--tertiary-color: #326cb5;
	--quaternary-color: #dcdfe1;
	--optional-color: #eaf7ff;
	--text-color: #161C2D;
}

/* ================= Resets ================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ================= Helpers ================= */
.section-padding {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section-padding-top {
	padding-top: 50px;
}

.section-padding-top-0 {
	padding-top: 0px;
}

.section-padding-bottom {
	padding-bottom: 50px;
}

section.breadcrumb-section {
	padding: 100px 0px 20px 0px;
}

/* ================= background color utilities ================= */
.bg-prim {
	background-color: var(--primary-color) !important;
}

.bg-second {
	background-color: var(--secondary-color) !important;
}

.bg-terti {
	background-color: var(--tertiary-color) !important;
}

.bg-Quatern {
	background-color: var(--quaternary-color) !important;
}

.bg-opt {
	background-color: var(--optional-color) !important;
}

/* ================= text color utilities ================= */

.text-prim {
	color: var(--primary-color) !important;
}

.text-second {
	color: var(--secondary-color) !important;
}

.text-terti {
	color: var(--tertiary-color) !important;
}

.text-quatern {
	color: var(--quaternary-color) !important;
}

.text-dark {
	color: var(--text-color) !important;
}

.text-hover {
	transition: color .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-hover:hover {
	color: var(--secondary-color) !important;
}

.text-justify {
	text-align: justify;
}

/* ================= button color utilities ================= */

.btn-prim {
	background-color: var(--primary-color) !important;
}

.btn-second {
	background-color: var(--secondary-color) !important;
}

.btn-terti {
	background-color: var(--tertiary-color) !important;
}

.btn-quatern {
	background-color: var(--quaternary-color) !important;
}

.btn-dark {
	background-color: var(--text-color) !important;
}

.btn-hover {
	transition: color .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover:hover {
	background-color: var(--secondary-color) !important;
}

.text-justify {
	text-align: justify;
}

/* ================= Border Colors Utilities ================= */
.border-prim {
	border: solid 1px var(--primary-color) !important;
}

.border-second {
	border: solid 1px var(--secondary-color) !important;
}

.border-terti {
	border: solid 1px var(--tertiary-color) !important;
}

.border-quatern {
	border: solid 1px var(--quaternary-color) !important;
}

/* ================= header and footer ================= */
body::-webkit-scrollbar {
	width: 6px;
}

body {
	height: auto !important;
}

body::-webkit-scrollbar-track {
	background: var(--tertiary-color) !important;
}

/* header part style */
header .book-service {
	background: var(--tertiary-color) !important;
}

header.header-light.smaller {
	background: var(--primary-color) !important;
}

header #logo .logo-main {
	width: 100%;
	max-width: 100px;
	margin-right: 15px;
}

header .h-phone h5:before {
	color: var(--tertiary-color);
}

#preloader {
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .3s ease;
}

.dots-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.dot {
	height: 20px;
	width: 20px;
	margin-right: 10px;
	border-radius: 10px;
	background-color: #b3d4fc;
	animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
	margin-right: 0;
}

.dot:nth-child(1) {
	animation-delay: -0.3s;
}

.dot:nth-child(2) {
	animation-delay: -0.1s;
}

.dot:nth-child(3) {
	animation-delay: 0.1s;
}

@keyframes pulse {
	0% {
		transform: scale(0.8);
		background-color: #b3d4fc;
		box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
	}

	50% {
		transform: scale(1.2);
		background-color: #6793fb;
		box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
	}

	100% {
		transform: scale(0.8);
		background-color: #b3d4fc;
		box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
	}
}

.scrollbar-v.dark:before {
	background: rgba(0, 0, 0, .15) !important;
}

.float-text.dark a {
	color: #000000 !important;
}

/* footer part style */
footer {
	background: var(--optional-color);
}

footer .subfooter {
	border-top: solid 1px var(--quaternary-color) !important
}

footer .social-icons i:hover {
	background: var(--secondary-color) !important;
	border-color: var(--text-color) !important;
	color: var(--optional-color) !important;
}

.btn-main {
	background-color: var(--tertiary-color);
}

.accordion-button:not(.collapsed) {
	background: rgba(var(--primary-color), .1) !important;
	color: var(--tertiary-color) !important;
}

.owl-dot.active {
	background: var(--tertiary-color) !important;
}

/* aditya work starts */
/* form bot field */
.field-bot {
	position: absolute;
	left: -9999px;
	height: 1px !important;
	width: 1px !important;
	opacity: 0 !important;
}

/* contact page */

.contact-ways a {
	color: var(--tertiary-color);
}

.contact-ways a:hover {
	color: var(--secondary-color)
}

.contact .form-border input[type=text]:focus, .contact .form-border textarea:focus, .contact .form-border input[type=date]:focus, .contact .form-border select:focus {
	background: rgb(255 255 255);
}

.error {
	display: inline-block;
	margin-top: 0px;
	color: #d21723 !important;
	margin-bottom: 0px;
	clear: both;
	padding-top: 0px;
	padding: 0px;
	background: rgba(255, 255, 255, 0.1);
	border: solid 0px #ffffff;
	line-height: initial;
}

.form-border input[type=text],
.form-border textarea,
.form-border input[type=email],
.form-border input[type=password],
.form-border input[type=date],
.form-border select {
	margin-bottom: 0px;
}

.contact #name-error,
.contact #email-error,
.contact #phone-error,
.contact #number-error,
.contact #subject-error,
.contact #message-error {
	font-size: 13px;
	margin-bottom: 0;
}

@media (max-width:768px) {

	.contact .spacer-double,
	.contact .spacer-single {
		display: none;
	}
}

/* enquiry model */
.modal-footer {
	border-top: 0px solid #dee2e6;
}

#enquiryModal .modal-dialog {
	max-width: 520px;
	border-radius: 12px;
}

#enquiryModal .modal-content {
	border-radius: 12px;
	overflow: hidden;
	border: none;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	background: #ffffff;
}

#enquiryModal .modal-header {
	background: #f4f7ff;
	padding: 15px 20px;
	border-bottom: 1px solid #e5e8f0;
}

#enquiryModal .modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #1f1f1f;
}

#enquiryModal #model-close i {
	color: #444;
	transition: 0.3s ease;
}

#enquiryModal #model-close i:hover {
	color: #e11d48;
}

#enquiryModal .modal-body {
	padding: 20px 25px;
}

#enquiryModal .e-form-label {
	font-weight: 600;
	color: #333;
	margin-bottom: 0px;
}

#enquiryModal .form-control {
	border-radius: 8px;
	padding: 10px;
	border: 1px solid #d4d7e2;
	transition: 0.3s ease-in-out;
}

#enquiryModal .form-control:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(94, 229, 70, 0.25);
}

#enquiryModal textarea {
	border-radius: 8px;
}

#enquiryModal .enquiry-btn {
	background: var(--tertiary-color);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border-radius: 10px;
	border: none;
	transition: 0.3s ease-in-out;
	width: 144px !important;
}

#enquiryModal .enquiry-btn:hover {
	background: var(--text-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(79, 70, 229, 0.3);
}

#enquiryModal #success_message,
#enquiryModal #contact_message {
	display: inline-block;
	position: relative;
}

#enquiryModal .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
	width: 6px;
}

#enquiryModal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
	background: #d3d3d3;
	border-radius: 10px;
}

#enquiryModal .form-control {
	margin-bottom: 0px;
}

footer .social-icons .bark-icon {
	width: 25px !important;
}

/* header fix */
@media (max-width:425px) {
	div#logo img {
		max-width: 90px;
	}

	header.header-mobile {
		padding-bottom: 0px;
	}
}

.mobile-icon {
	display: none;
}

@media only screen and (max-width: 767px) {
	#mainmenu {
		padding-top: 20px;
	}

	header a.btn-main {
		display: inline-block !important;
	}

	.mobile-icon a {
		padding-inline: 20px;
	}

	.mobile-icon {
		padding-top: 50px;
		display: inline-flex;
	}
}

@media only screen and (max-width: 992px) {
	header.header-mobile #mainmenu {
		width: 100%;
		padding-right: 30px;
		padding-top: 20px;
	}
}

@media only screen and (max-width: 375px) {
	header a.btn-main {
		display: none !important;
	}
}

/* cookie section */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 360px;
	display: none;
	z-index: 999999;
}

.cookie-box {
	background: #fff;
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	font-family: Arial, sans-serif;
}

.cookie-box h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.cookie-box p {
	font-size: 14px;
	margin-bottom: 20px;
}

.cookie-buttons {
	display: flex;
	justify-content: space-between;
}

.reject-btn {
	background: #f2f2f2;
	border: none;
	padding: 10px 18px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

.reject-btn:hover {
	background: #e4e4e4;
}

.accept-btn {
	background: var(--tertiary-color);
	border: none;
	padding: 10px 18px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	color: #fff;
}

/* terms and condition and privacy policy */
.privacy a, .terms a {
	color: var(--tertiary-color);
}

.iti__globe {
	height: 15px !important;
	width: 15px !important;
}

.iti__selected-country-primary {
	width: 8%;
	margin-right: 10px;
}

.iti input.iti__tel-input, .iti input.iti__tel-input[type=tel] {
	padding-left: 68px !important;
}

.contact #success_message,
.contact #contact_message {
	min-height: 40px;
	min-width: 300px;
	position: absolute;
}

.contact #success_message .alert,
.contact #contact_message .alert {
	position: absolute;
	min-width: 300px;
	left: 0;
	right: 0;
	top: 0;
	margin: 0;
}

.second-right-img img {
	height: 100% !important;
	object-fit: cover !important;
}

#enquiryModal textarea {
	height: 100px !important;
}

.testimoniols-avatar {
	width: 60px !important;
	height: 60px !important;
	background: var(--tertiary-color) !important;

	border-radius: 8px !important;
}

/* Error message container - reserves space */
#careerApplicationForm .error-message-container {
	min-height: 20px;
	margin-top: 0.125rem;
	font-size: 0.95rem;
	color: #dc3545;
	line-height: 1.3;
	transition: opacity 0.2s ease;
}

#careerApplicationForm .error-message-container:empty::before {
	content: '\00a0';
}

#careerApplicationForm .error-message-container .invalid-feedback {
	display: block !important;
	margin: 0;
	padding: 0;
}

#careerApplicationForm .error-message-container.show {
	opacity: 1;
}

#careerApplicationForm .form-label {
	margin-bottom: 0.375rem;
}

#careerApplicationForm .form-control {
	margin-bottom: 0;
}

@media (max-width: 767.98px) {
	#careerApplicationForm .row.g-3 {
		gap: 0.75rem !important;
	}
}

@media (min-width: 769px) {
	.logo-social img {
		margin-left: 125px !important;
	}
}