:root {
    --primary-color: #FFFF00; /* Bright Yellow */
    --white-color: #ffffff;
    --black-color: #000000;
    --secondary-color: #ffcc00; /* A softer yellow for secondary elements */
    --navbar-bg-color: transparent;
    --nav-scroll-bg-color: #ffffff;
    --nav-scroll-shadow: rgba(0, 0, 0, 0.10); /* Slightly darker shadow for better contrast */
    --banner-bg-gradient: linear-gradient(to left, #ffcc00, #ffff66); /* Light yellow gradient */
    --sectioner-line-color: #ffcc00; /* Matching secondary color */
    --icon-box-bg-gradient: linear-gradient(to left, #ffcc00, #ffff66); /* Light yellow gradient */
    --about-btn-color: #ffcc00; /* Softer yellow for buttons */
    --about-btn-hover-bg: #ffff66; /* Lighter yellow for hover effect */
    --video-overlay-gradient: linear-gradient(to left, rgba(255, 204, 0, 0.90), rgba(255, 255, 102, 0.90)); /* Semi-transparent yellow gradient */
    --faq-bg-color: #fafafa;
    --form-input-border-color: #e4e4e4;
    --btn-grad-bg: linear-gradient(to left,#ffff66, #ffcc00); /* Lighter yellow gradient */
    --contact-info-bg: linear-gradient(to left, #ffcc00, #ffff66); /* Light yellow gradient */
    --footer-copy-bg: #ffffff;
    --footer-copy-color: #242424;
    --team-bg-color: #fafafa;
    --test-img-border-color: #fff;
    --download-bg-gradient: linear-gradient(to left, #ffcc00, #ffff66); /* Light yellow gradient */
}


* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
}

h1, h2, h3 {
    font-weight: 700;
}

h4, h5 {
    font-weight: 600;
}

h6 {
    font-weight: 500;
}

.white {
    color: var(--white-color) !important;
}

.black {
    color: var(--black-color);
}

.navbar, .nav-scroll {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    min-height: 50px;
    line-height: 50px;
    padding: 0;
    background: white;
    transition: all .4s ease;
}
.navbar .logo{
	color: var(--black-color);
}

.navbar .nav-item, .navbar .nav-item a, .nav-scroll .navbar-nav > li > a, .nav-scroll .navbar-toggler span, .nav-scroll .nav-link:hover::after {
    color: #333;
}

.navbar .active, .nav-scroll .active {
    color: var(--primary-color) !important;
}

.navbar .nav-item {
    margin: 0 5px;
    padding: 0;
}

.navbar .nav-item a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.navbar .navbar-toggler, .nav-scroll .navbar-toggler {
    cursor: pointer;
}

.navbar-style2 .active::after, .navbar-style2 .nav-link::after {
    display: none;
}

.nav-scroll {
    background: var(--nav-scroll-bg-color);
    box-shadow: 0 1px 8px 3px var(--nav-scroll-shadow);
}

.nav-scroll .navbar-brand img {
    transform: scale(1.03) !important;
}

.navbar .nav-link, .navbar .navbar-toggler span {
    position: relative;
    padding: 0;
}

.banner, .testimonial, .download {
    background: var(--btn-grad-bg);
    padding: 100px 0;
    position: relative;
}

.banner::before, .testimonial::before, .download::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(images/pattern.png);
}

.banner a.weblink {
    color: var(--white-color);
    border-bottom: 1px dotted var(--white-color);
}

.banner a:hover {
    text-decoration: none;
}

.svg-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.banner-text {
    padding-right: 80px;
    margin: 50px 0 0;
}

.banner-text p {
    margin: 40px 0;
}

.banner-text ul {
    list-style: none;
}

.banner-text ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.banner-text ul li a img {
    width: 150px;
    border-radius: 7px;
}

.prelative {
    position: relative;
}

.section-padding {
    padding: 80px 0;
}

.sectioner-header {
    width: 69%;
    margin: 0 auto;
}

.line {
    height: 2px;
    width: 50px;
    background: var(--sectioner-line-color);
    display: block;
    margin: 20px auto;
}

.line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 150px;
    height: 2px;
    border-bottom: 2px dashed var(--sectioner-line-color);
    margin-left: -75px;
}

.sectioner-header p {
    color: #818992;
    font-size: 17px;
}

.section-content {
    margin-top: 80px;
}

.icon-box {
    margin-bottom: 50px;
}

.icon-box i {
    display: block;
    width: 135px;
    height: 135px;
    border-radius: 100px;
    background: var(--icon-box-bg-gradient);
    color: var(--white-color);
    font-size: 50px;
    line-height: 135px;
    margin: 0 auto;
}

.icon-box h5 {
    margin-top: 30px;
}

.icon-box p {
    color: #818992;
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
}

.about-btn {
    color: var(--about-btn-color);
    padding: 10px 40px;
    border: 2px solid var(--about-btn-color);
    border-radius: 7px;
    margin-top: 30px;
    display: inline-block;
    font-size: 18px;
}

.about-btn:hover {
    background: var(--about-btn-hover-bg);
    color: var(--white-color);
    text-decoration: none;
}

.video-section {
    background: url(images/video-bg.jpg) no-repeat fixed center;
    background-size: cover;
    overflow: hidden;
}

.video-overlay {
    background: var(--video-overlay-gradient);
}

.video-section h3 {
    font-weight: 600;
    font-size: 38px;
}

.video-section i {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    background: var(--white-color);
    color: var(--about-btn-color);
    font-size: 30px;
    line-height: 70px;
    margin: 0 auto;
    cursor: pointer;
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.video-popup .video-src {
    position: relative;
    width: 700px;
    max-width: 80%;
}

.video-popup .iframe-src {
    width: 100%;
    height: 0;
    padding-top: 56.3%;
    position: relative;
    display: none;
}

.video-popup .iframe-src iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-feature {
    margin: 40px 0 80px;
}

.single-feature h5 {
    font-size: 16px;
}

.media-right-margin {
    margin-right: 25px;
}

.single-feature p {
    font-size: 13px;
}

.icon-border span {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    color: var(--about-btn-color);
    font-size: 18px;
    line-height: 50px;
    border: 1px solid var(--about-btn-color);
}

/* here */
.testimonial { 
	background: var(--secondary-color);
	background: var(--btn-grad-bg);
	padding: 100px 0px;
	position: relative;
}

.testimonial::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(images/pattern.png);
}

.bx-prev {
	left: -90px !important;
	background: url(images/arrow-left.png) no-repeat !important;
	background-size: auto auto !important;
	background-size: 100% 100% !important;
}

.bx-next {
	right: -90px !important;
	background: url(images/arrow-right.png) no-repeat !important;
	background-size: auto auto !important;
	background-size: 100% 100% !important;
}

.bx-wrapper {
	border: none !important;
	background: rgba(255, 255, 255, 0.81) !important;
	border-radius: 5px !important;
	box-shadow: none !important;
}

.slider-item {
	padding: 20px;
}

.slider .test-img img {
	border: 12px solid var(--nav-scroll-bg-color);
	border-radius: 50%;
	width: 100%;
	height: auto;
}

.test-img {
	float: left;
	width: 20%;
	margin-right: 5%;
}

.test-text {
	float: left;
	width: 75%;
}

.slider .title {
	display: block;
	position: relative;
	margin: 0 0 20px;
	font-size: 1.125em;
	line-height: 1.25;
}

.slider .title span {
	display: block;
	font-size: 1.5em;
	font-weight: 700;
}

#contact_form .form-input {
	border: 1px solid #e4e4e4;
}

input {
	height: 42px;
	padding: 0 1rem;
	background: var(--nav-scroll-bg-color);
	border-radius: 30px;
	margin-bottom: 1rem;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 0;
}

#contact_form textarea {
	resize: none;
	padding: 1rem;
	height: 150px;
	background: var(--nav-scroll-bg-color);
	border: 0;
	border-radius: 30px;
	margin-bottom: 1rem;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-grad {
	padding: .7rem 2rem;
	display: inline-block;
	color: var(--nav-scroll-bg-color);
	border-radius: 2rem;
	border: 0;
	background: var(--secondary-color);
	background: var(--btn-grad-bg);
	cursor: pointer;
}

.contact-info {
	padding: 2rem 2rem 1rem;
	border-radius: 8px;
	background: var(--secondary-color);
	background: linear-gradient(to right, #ffcc00, #ffff66);
}

.contact-item {
	margin: 23px 0px;
}

.contact-item i {
	font-size: 20px;
}

.contact-item p {
	line-height: 20px;
	margin: 0;
}

.download {
	background: var(--secondary-color);
	background: var(--banner-bg-gradient);
	padding: 100px 0px;
	position: relative;
}

.download::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(images/pattern.png);
}

.download ul {
	list-style: none;
}

.download ul li {
	display: inline-block;
	margin: 0px 10px 10px 0px;
}

.download ul li a {
	display: block;
}

.download ul li a img {
	width: 150px;
	border-radius: 7px;
}

.footer-copy {
	background: var(--white-color);
	color: #242424;
	font-size: 13px;
	text-align: center;
	padding: 15px 0px;
}

.footer-copy p {
	margin-bottom: 0px;
}

.popup-background {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

/* Style for the popup content */
.popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 20px;
	width: 90%;
	max-width: 600px;
	height: 80%;
	overflow-y: scroll;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	z-index: 1001;
}

/* Close button style */
.close-popup {
	float: right;
	font-size: 20px;
	cursor: pointer;
}

/* Responsive styling */
@media (max-width: 600px) {
	.popup-content {
		width: 95%;
		height: 85%;
		padding: 15px;
	}
}

@media all and (max-width:991px) {
	.navbar .navbar-collapse {
		overflow: auto;
		background: rgb(213, 198, 221);
		color: var(--nav-scroll-bg-color) !important;
		text-align: center;
		padding: 10px 0;
	}

	.nav-scroll .navbar-collapse {
		background: white !important;
	}

	#contact_form {
		margin-bottom: 20px;
	}
}

@media all and (max-width:768px) {

	.nav-scroll .navbar-brand img,
	.navbar-brand img {
		transform: scale(0.75) !important;
		-webkit-transform: scale(0.75) !important;
	}

	.banner-text {
		padding-right: 0px;
		margin: 10px 0px 0px;
	}

	h2 {
		font-size: 25px;
	}

	h3 {
		font-size: 23px;
	}

	.section-padding {
		padding: 40px 0px;
	}

	.banner-text p {
		margin: 25px 0px;
	}

	.banner-text ul li a img {
		width: 140px;
		border-radius: 7px;
	}

	.sectioner-header {
		width: 90%;
	}

	.sectioner-header p {
		font-size: 14px;
	}

	.about-btn {
		padding: 5px 30px;
		margin-top: 0px;
		font-size: 16px;
	}

	.single-feature {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.team-detail {
		margin-top: 20px;
	}

	.team-detail img {
		width: 50%;
	}

	.bx-controls {
		display: none;
	}

	.bx-wrapper {
		margin: 0px 20px !important;
	}

	.slider .test-img img {
		margin: 0 auto;
	}

	.test-img {
		float: none;
		width: 200px;
		height: 200px;
		margin: 0 auto;
	}

	.test-text {
		float: none;
		width: 100%;
		text-align: center;
	}

	.section-content {
		margin-top: 40px;
	}

	.faq-content {
		margin: 10px 0px;
	}

	.faq-content h4 {
		font-size: 16px;
	}

	.faq-content p {
		font-size: 13px;
	}

	#contact_form {
		margin-bottom: 20px;
	}

	.contact-item {
		font-size: 12px;
	}

	.download ul li a img {
		width: 120px;
	}

	.footer-copy p {
		font-size: 10px;
	}
}