:root {
	--primary-color: #5B2C8A;
	--secondary-color: #FFA500;
	--accent-color: #FFA500;
	--dark-bg: #0f1419;
	--light-bg: #f8f9fa;
	--text-dark: #1a1a1a;
	--text-light: #666666;
	--success-color: #FFA500;
	--border-radius: 12px;
}

body {
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #ffffff;
	color: var(--text-dark);
}

p {
	margin-bottom: 0px;
	font-size: 14px;
	color: #666666;
	line-height: 30px;
}

a {
	text-decoration: none !important;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
}

a.filled-button {
	background-color: var(--primary-color);
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	border: 2px solid var(--primary-color);
	box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

a.filled-button:hover {
	background-color: #fff;
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

a.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.border-button:hover {
	background-color: #fff;
	color: var(--primary-color);
}

.section-heading {
	text-align: center;
	margin-bottom: 80px;
}

.section-heading h2 {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: -0.5px;
}

.section-heading em {
	font-style: normal;
	color: var(--primary-color);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-heading span {
	display: block;
	margin-top: 15px;
	text-transform: uppercase;
	font-size: 14px;
	color: var(--text-light);
	letter-spacing: 2px;
	font-weight: 600;
}

/* Sub Header Style */

.sub-header {
	background-color: #5B2C8A;
	height: 46px;
	line-height: 46px;
}

.sub-header ul li {
	display: inline-block;
}

.sub-header ul.left-info li {
	border-left: 1px solid rgba(250, 250, 250, 0.3);
	padding: 0px 20px;
}

.sub-header ul.left-info li:last-child {
	border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.left-info li i {
	margin-right: 10px;
	font-size: 18px;
}

.sub-header ul.left-info li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.sub-header ul.right-icons {
	float: right;
}

.sub-header ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li:first-child {
	border-left: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li a {
	color: #fff;
	transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
	opacity: 0.75;
}



/* Header Style */
header {
	position: fixed;
	z-index: 99999;
	width: 100%;
	background-color: transparent;
	height: 100px;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

header .navbar {
	padding: 0px;
	height: 100%;
}

.background-header .navbar {
	padding: 0px;
}

.background-header {
	top: 0;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.95) !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.background-header .navbar-brand h2 {
	color: var(--primary-color) !important;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.background-header .navbar-nav a.nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
}

.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.current,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: var(--primary-color) !important;
	border-bottom: 3px solid var(--primary-color);
}

.background-header .navbar-logo {
	height: 75px;
	/* Increased from 60px */
	/* Ensure logo is visible on white background - adjust logic if logo has white parts */
	filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar .navbar-brand {
	float: none;
	margin-top: 0px;
	outline: none;
}

.navbar-logo {
	height: 90px;
	/* Increased from 70px */
	width: auto;
	display: block;
	transition: all 0.3s ease;
}


.navbar .navbar-brand h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	letter-spacing: -1px;
}

.navbar .navbar-brand h2 em {
	font-style: normal;
	font-size: 16px;
}

#navbarResponsive {
	z-index: 999;
}

.navbar-collapse {
	text-align: center;
	/* Removed background-color etc for desktop */
}

.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}

.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #fff;
	transition: all 0.4s;
	margin-top: 5px;
	position: relative;
}

.navbar .navbar-nav a.nav-link:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	transition: width 0.3s ease;
}

.navbar .navbar-nav a.nav-link:hover:after,
.navbar .navbar-nav .active>.nav-link:after {
	width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	color: #fff;
}

.navbar .navbar-toggler-icon {
	background-image: none;
}

.navbar .navbar-toggler {
	border-color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	height: 36px;
	outline: none;
	border-radius: 8px;
	position: absolute;
	right: 30px;
	top: 32px;
	transition: all 0.3s;
}

/* Fix for hamburger icon disappearing on white background */
.background-header .navbar-toggler-icon:after {
	color: var(--primary-color);
}

.background-header .navbar-toggler {
	background-color: rgba(0, 0, 0, 0.05);
	/* Slight dark tint for visibility */
	border-color: transparent;
}

.navbar .navbar-toggler:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #fff;
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
}



/* Banner Style */

.img-fill {
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	text-align: center
}

.img-fill img {
	min-height: 100%;
	min-width: 100%;
	position: relative;
	display: inline-block;
	max-width: none;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.Grid1k {
	padding: 0 15px;
	max-width: 1200px;
	margin: auto;
}

.blocks-box,
.slick-slider {
	margin: 0;
	padding: 0 !important;
}

.slick-slide {
	float: left;
	padding: 0;
}

.Modern-Slider .item .img-fill {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 95vh;
}

.Modern-Slider .item-1 .img-fill {
	background-image: url(../images/slide_01.jpg);
}

.Modern-Slider .item-2 .img-fill {
	background-image: url(../images/slide_02.jpg);
}

.Modern-Slider .item-3 .img-fill {
	background-image: url(../images/slide_03.jpg);
}

.Modern-Slider .NextArrow {
	position: absolute;
	top: 50%;
	right: 30px;
	border: 0 none;
	background-color: transparent;
	text-align: center;
	font-size: 36px;
	font-family: 'FontAwesome';
	color: #FFF;
	z-index: 5;
	outline: none;
	cursor: pointer;
}

.Modern-Slider .NextArrow:before {
	content: '\f105';
}

.Modern-Slider .PrevArrow {
	position: absolute;
	top: 50%;
	left: 30px;
	border: 0 none;
	background-color: transparent;
	text-align: center;
	font-size: 36px;
	font-family: 'FontAwesome';
	color: #FFF;
	z-index: 5;
	outline: none;
	cursor: pointer;
}

.Modern-Slider .PrevArrow:before {
	content: '\f104';
}

ul.slick-dots {
	display: none !important;
}

.Modern-Slider .text-content {
	text-align: left;
	width: 75%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.Modern-Slider .item h6 {
	margin-bottom: 15px;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFA500;
	animation: fadeOutRight 1s both;
}

.Modern-Slider .item h4 {
	margin-bottom: 30px;
	text-transform: uppercase;
	font-size: 48px;
	font-weight: 800;
	letter-spacing: 2.5px;
	color: #FFF;
	overflow: hidden;
	animation: fadeOutLeft 1s both;
	line-height: 1.1;
}

.Modern-Slider .item p {
	max-width: 570px;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 40px;
}

.Modern-Slider .item a {
	margin: 0 5px;
}

.Modern-Slider .item.slick-active h6 {
	animation: fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4 {
	animation: fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active {
	animation: Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
	position: relative;
}

.Modern-Slider {
	background: #000;
}


/* ==== Slick Slider Css Ruls === */
.slick-slider {
	position: relative;
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0
}

.slick-list:focus {
	outline: none
}

.slick-list.dragging {
	cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: ''
}

.slick-track:after {
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	display: none;
	float: left
		/* If RTL Make This Right */
	;
	height: 100%;
	min-height: 1px
}

.slick-slide.dragging img {
	pointer-events: none
}

.slick-initialized .slick-slide {
	display: block
}

.slick-loading .slick-slide {
	visibility: hidden
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent
}




/* Request Form */

.request-form {
	background: linear-gradient(135deg, #5B2C8A, #7B3FBF);
	padding: 50px 0px;
	color: #fff;
	box-shadow: 0 10px 30px rgba(91, 44, 138, 0.2);
}

.request-form h4 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.request-form span {
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
	opacity: 0.95;
}

.request-form a.border-button {
	margin-top: 12px;
	float: right;
	background-color: rgba(255, 255, 255, 0.15);
	border: 2px solid #fff;
	color: #fff;
	transition: all 0.3s;
}

.request-form a.border-button:hover {
	background-color: #fff;
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}




/* Services */

.services {
	margin-top: 140px;
}

.service-item {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--border-radius);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.service-item:hover {
	box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
	transform: translateY(-8px);
}

.service-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-item:hover img {
	transform: scale(1.05);
}

.service-item .down-content {
	background: linear-gradient(135deg, #ffffff, #f8f9fa);
	padding: 35px;
	flex: 1;
	display: flex;
	flex-direction: column;
	border-top: 4px solid var(--primary-color);
}

.service-item .down-content h4 {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.service-item .down-content p {
	margin-bottom: 0;
	color: var(--text-light);
	line-height: 1.6;
	flex: 1;
}



/* Fun Facts */

.fun-facts {
	margin-top: 140px;
	background: linear-gradient(135deg, rgba(91, 44, 138, 0.95), rgba(123, 63, 191, 0.95)), url(../images/fun-facts-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
	position: relative;
}

.fun-facts::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(91, 44, 138, 0.85), rgba(123, 63, 191, 0.85));
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 14px;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 10px;
	display: block;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.fun-facts h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 35px;
	position: relative;
	z-index: 1;
	letter-spacing: -0.5px;
}

.fun-facts em {
	font-style: normal;
	color: #FFA500;
	text-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
	line-height: 1.8;
}

.fun-facts .left-content {
	margin-right: 45px;
	position: relative;
	z-index: 1;
}

.count-area-content {
	text-align: center;
	background-color: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	padding: 30px 35px 40px 35px;
	margin: 15px 0px;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.count-area-content:hover {
	background-color: rgba(255, 255, 255, 0.18);
	transform: translateY(-5px);
}

.count-digit {
	margin: 5px 0px;
	color: #FFA500;
	font-weight: 800;
	font-size: 42px;
	letter-spacing: -1px;
}

.count-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}



/* More Info */

.more-info {
	margin-top: 140px;
}

.more-info .left-image {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.more-info .left-image img {
	width: 100%;
	overflow: hidden;
	transition: transform 0.5s ease;
}

.more-info .left-image:hover img {
	transform: scale(1.05);
}

.more-info .more-info-content {
	background: linear-gradient(135deg, #ffffff, #f8f9fa);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-info .more-info-content {
	background-color: transparent;
	box-shadow: none;
}

.about-info .right-content {
	padding: 0px !important;
	margin-right: 30px;
}

.more-info .right-content {
	padding: 50px 50px;
}

.more-info .right-content span {
	text-transform: uppercase;
	font-size: 14px;
	color: var(--primary-color);
	letter-spacing: 2px;
	margin-bottom: 15px;
	display: block;
	font-weight: 700;
}

.more-info .right-content h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 35px;
	color: var(--text-dark);
	letter-spacing: -0.5px;
}

.more-info .right-content em {
	font-style: normal;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.more-info .right-content p {
	margin-bottom: 30px;
	color: var(--text-light);
	line-height: 1.8;
}


/* Testimonials Style */

.about-testimonials {
	margin-top: 0px !important;
}

.testimonials {
	margin-top: 140px;
	background: linear-gradient(135deg, #f8f9fa, #f0f4f8);
	padding: 140px 0px;
}

.testimonials .section-heading {
	margin-bottom: 60px;
}

.testimonial-item {
	margin-bottom: 30px;
	animation: fadeInUp 0.6s ease;
}

.testimonial-item .inner-content {
	text-align: center;
	background-color: #fff;
	padding: 40px 30px;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid var(--primary-color);
	position: relative;
}

.testimonial-item .inner-content::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 60px;
	color: var(--primary-color);
	opacity: 0.2;
}

.testimonial-item:hover .inner-content {
	box-shadow: 0 15px 40px rgba(91, 44, 138, 0.15);
	transform: translateY(-5px);
}

.testimonial-item p {
	font-size: 15px;
	font-weight: 400;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 20px;
}

.testimonial-item h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: -0.5px;
	margin-bottom: 5px;
}

.testimonial-item span {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	font-size: 13px;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.testimonial-item img {
	max-width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: 20px auto 0px auto;
	object-fit: cover;
	border: 3px solid var(--primary-color);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}




/* Call Back Style */

.callback-services {
	border-top: 1px solid #eee;
	padding-top: 140px;
}

.contact-us {
	background-color: #f7f7f7;
	padding: 140px 0px;
}

.contact-us .contact-form {
	background-color: transparent !important;
	padding: 0 !important;
}

.callback-form {
	margin-top: 140px;
}

.callback-form .contact-form {
	background-color: #5B2C8A;
	padding: 60px;
	border-radius: 5px;
	text-align: center;
}

.callback-form .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder {
	/* Edge */
	color: #aaa;
}

.callback-form .contact-form :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #aaa;
}

.callback-form .contact-form ::placeholder {
	color: #aaa;
}

.callback-form .contact-form button.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.callback-form .contact-form button.border-button:hover {
	background-color: #fff;
	color: var(--primary-color);
}

.contact-us .contact-form button.filled-button {
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.contact-us .contact-form button.filled-button:hover {
	background-color: #fff;
	color: var(--primary-color);
}

/* Footer Style */

footer {
	background-color: var(--dark-bg);
	padding: 100px 0px 40px 0px;
	color: #fff;
	border-top: 4px solid var(--primary-color);
}

footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 35px;
	text-transform: uppercase;
}

footer p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

footer ul.social-icons {
	margin-top: 25px;
	display: flex;
	gap: 12px;
}

footer ul.social-icons li {
	display: inline-block;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: #fff;
	border-radius: 50%;
	transition: all 0.3s;
	font-size: 16px;
}

footer ul.social-icons li a:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 20px rgba(91, 44, 138, 0.3);
}

footer ul.menu-list {
	margin-top: 20px;
}

footer ul.menu-list li {
	margin-bottom: 12px;
}

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s;
	font-weight: 500;
}

footer ul.menu-list li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa !important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa !important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder {
	/* Edge */
	color: #aaa;
}

footer .contact-form :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #aaa;
}

footer .contact-form ::placeholder {
	color: #aaa;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: var(--primary-color);
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: var(--primary-color);
}



/* Sub-footer Style */

.sub-footer {
	background-color: #000000;
	text-align: center;
	padding: 30px 0px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-footer p {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
	letter-spacing: 0.5px;
	margin-bottom: 0;
	font-size: 14px;
}

.sub-footer a {
	color: var(--primary-color);
	transition: all 0.3s;
}

.sub-footer a:hover {
	color: var(--secondary-color);
}


.page-heading {
	text-align: center;
	background-image: url(../images/page-heading-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}

.page-heading h1 {
	text-transform: capitalize;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
}

.page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}


/* team */

.team {
	background-color: #f7f7f7;
	margin-top: 140px;
	margin-bottom: -140px;
	padding: 120px 0px;
}

.team-item img {
	width: 100%;
	overflow: hidden;
}

.team-item .down-content {
	background-color: #fff;
	padding: 30px;
}

.team-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 10px;
}

.team-item .down-content span {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
}

.team-item .down-content p {
	margin-bottom: 20px;
}


/* Single Service */

.single-services {
	margin-top: 140px;
}

#tabs ul {
	margin: 0;
	padding: 0;
}

#tabs ul li {
	margin-bottom: 10px;
	display: inline-block;
	width: 100%;
}

#tabs ul li:last-child {
	margin-bottom: 0px;
}

#tabs ul li a {
	text-transform: capitalize;
	width: 100%;
	padding: 30px 30px;
	display: inline-block;
	background-color: var(--primary-color);
	font-size: 20px;
	color: #121212;
	letter-spacing: 0.5px;
	font-weight: 700;
	transition: all 0.3s;
}

#tabs ul li a i {
	float: right;
	margin-top: 5px;
}

#tabs ul .ui-tabs-active span {
	background: #faf5b2;
	border: #faf5b2;
	line-height: 90px;
	border-bottom: none;
}

#tabs ul .ui-tabs-active a {
	color: #fff;
}

#tabs ul .ui-tabs-active span {
	color: #1e1e1e;
}

.tabs-content {
	margin-left: 30px;
	text-align: left;
	display: inline-block;
	transition: all 0.3s;
}

.tabs-content img {
	max-width: 100%;
	overflow: hidden;
}

.tabs-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
	margin-top: 30px;
}

.tabs-content p {
	font-size: 14px;
	color: #7a7a7a;
	margin-bottom: 0px;
}



/* Contact Information */

.contact-information {
	margin-top: 140px;
}

.contact-information .contact-item {
	padding: 60px 30px;
	background-color: #f7f7f7;
	text-align: center;
}

.contact-information .contact-item i {
	color: var(--primary-color);
	font-size: 48px;
	margin-bottom: 40px;
}

.contact-information .contact-item h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.contact-information .contact-item p {
	margin-bottom: 20px;
}

.contact-information .contact-item a {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 15px;
}




/* Responsive Style */
@media (max-width: 768px) {
	.sub-header {
		display: none;
	}

	.Modern-Slider .item h6 {
		margin-bottom: 15px;
		font-size: 18px;
	}

	.Modern-Slider .item h4 {
		margin-bottom: 25px;
		font-size: 28px;
		line-height: 36px;
		letter-spacing: 1px;
	}
}

/* Scroll Animations */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Scroll Animation Classes */
.scroll-animate {
	animation: fadeIn 0.8s ease forwards;
	opacity: 0;
}

.scroll-animate.in-view {
	opacity: 1;
	animation: fadeIn 0.8s ease forwards;
}

.slide-left {
	animation: slideInLeft 0.8s ease forwards;
	opacity: 0;
}

.slide-left.in-view {
	animation: slideInLeft 0.8s ease forwards;
}

.slide-right {
	animation: slideInRight 0.8s ease forwards;
	opacity: 0;
}

.slide-right.in-view {
	animation: slideInRight 0.8s ease forwards;
}

.zoom {
	animation: zoomIn 0.8s ease forwards;
	opacity: 0;
}

.zoom.in-view {
	animation: zoomIn 0.8s ease forwards;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Additional Modern Effects */
.service-item {
	position: relative;
	overflow: hidden;
}

.service-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
	z-index: 10;
	pointer-events: none;
}

.service-item:hover::before {
	left: 100%;
}

/* Contact Form Enhancements */
.contact-form input,
.contact-form textarea {
	border-radius: var(--border-radius) !important;
	border: 2px solid rgba(0, 102, 204, 0.2) !important;
	transition: all 0.3s !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--primary-color) !important;
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1) !important;
}

/* Button Improvements */
button {
	transition: all 0.3s ease;
}

button:active {
	transform: scale(0.98);
}

/* Hero Section Enhancement */
.main-banner {
	position: relative;
	z-index: 1;
}

.Modern-Slider .item p {
	max-width: 570px;
	line-height: 25px;
	margin-bottom: 30px;
}

.Modern-Slider .NextArrow {
	right: 5px;
}

.Modern-Slider .PrevArrow {
	left: 5px;
}

.request-form {
	text-align: center;
}

.request-form a.border-button {
	float: none;
	margin-top: 30px;
}

.services .service-item {
	margin-bottom: 30px;
}

.fun-facts .left-content {
	margin-right: 0px;
	margin-bottom: 30px;
}

.more-info .right-content {
	padding: 30px;
}

footer {
	padding: 80px 0px 20px 0px;
}

footer .footer-item {
	border-bottom: 1px solid #343434;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

footer .last-item {
	border-bottom: none;
}

.about-info .right-content {
	margin-right: 0px;
	margin-bottom: 30px;
}

.team .team-item {
	margin-bottom: 30px;
}

.tabs-content {
	margin-left: 0px;
	margin-top: 30px;
}

.contact-item {
	margin-bottom: 30px;
}


@media (max-width: 992px) {
	.navbar .navbar-brand {
		position: absolute;
		left: 30px;
		top: 10px;
	}

	.navbar .navbar-brand {
		width: auto;
	}

	.navbar:after {
		display: none;
	}

	/* Explicitly target the responsive container and its connection states */
	#navbarResponsive,
	.navbar-collapse.show,
	.navbar-collapse.collapsing {
		background-color: rgba(255, 255, 255, 0.95) !important;
		/* Translucent */
		background: rgba(255, 255, 255, 0.95) !important;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		z-index: 99999;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		text-align: center;
		max-height: 80vh;
		/* Ensure it doesn't overflow screen weirdly */
		overflow-y: auto;
	}

	/* Moved mobile menu styling here */
	.navbar-collapse {
		background-color: #ffffff !important;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		padding: 20px 0;
		border-radius: 0 0 10px 10px;
		margin-top: 5px;
	}

	/* Solid background when mobile menu is active */
	/* Solid background when mobile menu is active */
	header.mobile-nav-active {
		background-color: var(--primary-color) !important;
		transition: none;
		/* Instant transition so no gap */
	}

	.navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #eee;
	}

	.navbar .navbar-nav a.nav-link {
		color: #333 !important;
		/* Make text dark on mobile menu */
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.navbar .navbar-nav .nav-link:after {
		display: none;
		/* Remove underline animation on mobile for cleaner look */
	}

	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .active>.nav-link,
	.navbar .navbar-nav .nav-link.current,
	.navbar .navbar-nav .nav-link.show,
	.navbar .navbar-nav .show>.nav-link {
		color: var(--primary-color) !important;
		background: linear-gradient(90deg, rgba(91, 44, 138, 0.08), transparent);
		/* Subtle colorful swipe */
		border-right: 4px solid var(--primary-color);
		/* Cool accent */
		padding-left: 10px !important;
		/* Slide effect */
		transition: all 0.3s ease;
	}

	.background-header .navbar-nav a.nav-link {
		color: #333 !important;
	}

	.navbar .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}

	.navbar .navbar-nav a.nav-link {
		padding: 15px 0px;
		color: #1e1e1e !important;
	}

	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .active>.nav-link,
	.navbar .navbar-nav .nav-link.current,
	.navbar .navbar-nav .nav-link.show,
	.navbar .navbar-nav .show>.nav-link {
		color: #7CB9E8 !important;
		border-bottom: none !important;
	}
}


/* Modern Loan Calculator Styles */
.loan-calculator {
	font-family: "Poppins", sans-serif;
	max-width: 600px;
	width: 95%;
	margin: 40px auto;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 20px 60px rgba(91, 44, 138, 0.15);
	border-radius: 20px;
	color: var(--text-dark);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
}

.loan-calculator,
.loan-calculator * {
	box-sizing: border-box;
}

.loan-calculator .top {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: #fff;
	padding: 40px;
}

.loan-calculator .top h2 {
	margin-top: 0;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.loan-calculator form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.loan-calculator .group {
	display: flex;
	flex-direction: column;
}

.loan-calculator .title {
	margin-bottom: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.loan-calculator form input[type=text] {
	font-size: 18px;
	padding: 10px 16px;
	width: 100%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: all 0.3s;
	font-weight: 600;
}

/* Range Slider Styling */
.loan-calculator form input[type=range] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	outline: none;
	margin-top: 10px;
	cursor: pointer;
}

.loan-calculator form input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s;
}

.loan-calculator form input[type=range]::-webkit-slider-thumb:hover {
	transform: scale(1.2);
}

.loan-calculator form input[type=text]:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.8);
	background-color: rgba(255, 255, 255, 0.15);
}

.loan-calculator form input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.loan-calculator .result {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.loan-calculator .result .left {
	width: 100%;
	padding: 8px 32px;
}

.loan-calculator .left h3 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.loan-calculator .result .value {
	font-size: 32px;
	font-weight: 800;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(91, 44, 138, 0.2);
	color: var(--primary-color);
}

.loan-calculator .result .value::before {
	content: "₹";
	font-size: 24px;
	font-weight: 700;
	margin-right: 6px;
	opacity: 0.6;
}

.loan-calculator .calculate-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: #fff;
	border: none;
	padding: 12px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	margin: 24px 32px;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(91, 44, 138, 0.2);
}

.loan-calculator .calculate-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(91, 44, 138, 0.35);
}

.loan-calculator .right {
	width: 50%;
}

@media (max-width: 650px) {
	.loan-calculator {
		width: 90%;
		max-width: 500px;
	}

	.loan-calculator form {
		flex-direction: column;
		gap: 20px;
	}

	.loan-calculator .result {
		flex-direction: column;
		text-align: center;
	}
}

/* testimonials button */
/* Testimonials Section */
/* Minimalistic style for testimonial buttons */
.testimonial-buttons {
	text-align: center;
	margin-top: 20px;
}

.testimonial-button {
	background-color: transparent;
	border: none;
	color: #ffffff;
	/* White color */
	font-size: 20px;
	cursor: pointer;
	padding: 5px 10px;
}

/* Adjust the button styles as needed */

/* Add this to your existing CSS styles */
/* Redesigned Service Cards (Adko Style) */
.service-item {
	background-color: #ffffff !important;
	padding: 40px 30px !important;
	border: 1px solid #eee !important;
	margin-bottom: 30px !important;
	transition: all 0.3s ease !important;
	height: 100% !important;
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	box-shadow: none !important;
	/* Reset any default shadows */
}

.service-item:hover {
	transform: translateY(-5px) !important;
	border-color: var(--primary-color) !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.service-item h4 {
	font-size: 22px !important;
	font-weight: 700 !important;
	margin-bottom: 15px !important;
	color: var(--text-dark) !important;
	text-transform: capitalize !important;
}

.service-item p {
	font-size: 15px !important;
	color: #777 !important;
	margin-bottom: 25px !important;
	line-height: 1.6 !important;
}

.service-link {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: var(--primary-color) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	display: inline-flex !important;
	align-items: center !important;
	transition: all 0.3s !important;
}

.service-link i {
	margin-left: 5px !important;
}

.service-item:hover .service-link i {
	margin-left: 10px !important;
}

/* Service Item Spacing */
.service-item {
	margin-bottom: 30px;
}

/* -------------------------------------------------------------------
   Owl Carousel Navigation Custom Styles
------------------------------------------------------------------- */
.owl-testimonials {
	position: relative;
}

.owl-testimonials .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	height: 1px;
	/* collapse height */
	pointer-events: none;
	/* Clicking through the container */
	margin-top: -20px;
	/* Adjust vertical center alignment */
}

.owl-testimonials .owl-nav button.owl-prev,
.owl-testimonials .owl-nav button.owl-next {
	position: absolute;
	width: 50px;
	height: 50px;
	background-color: #a4c639 !important;
	/* Brand green/primary color */
	color: #fff !important;
	border-radius: 50%;
	font-size: 22px !important;
	line-height: 50px !important;
	text-align: center;
	border: none;
	cursor: pointer;
	outline: none;
	transition: all 0.3s;
	pointer-events: auto;
	/* Make buttons clickable */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.owl-testimonials .owl-nav button.owl-prev:hover,
.owl-testimonials .owl-nav button.owl-next:hover {
	background-color: #1a1a1a !important;
	/* Dark hover state */
	transform: scale(1.1);
}

.owl-testimonials .owl-nav button.owl-prev {
	left: -70px;
}

.owl-testimonials .owl-nav button.owl-next {
	right: -70px;
}

/* Responsive adjustment for arrows on smaller screens */
@media (max-width: 1200px) {
	.owl-testimonials .owl-nav button.owl-prev {
		left: -20px;
	}

	.owl-testimonials .owl-nav button.owl-next {
		right: -20px;
	}
}