/* ===================================
   New Age Theme Styles
   Based on StartBootstrap New Age Template
   Modern App Landing Page Design
   =================================== */

/* Masthead/Hero Section */
.masthead {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 8rem;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, rgba(29, 128, 159, 0.9) 0%, rgba(26, 109, 135, 0.9) 100%);
	overflow: hidden;
}

.masthead::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	opacity: 0.3;
	pointer-events: none;
	filter: blur(2px);
}

.masthead::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
	filter: blur(40px);
}

.masthead .masthead-subheading {
	position: relative;
	z-index: 2;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.75;
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.masthead .masthead-heading {
	position: relative;
	z-index: 2;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, #e0e7ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.masthead .btn,
.masthead a,
.masthead button {
	position: relative;
	z-index: 2;
}

@media (min-width: 768px) {
	.masthead {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}

	.masthead .masthead-subheading {
		font-size: 1.5rem;
		line-height: 1.75;
		margin-bottom: 2rem;
	}

	.masthead .masthead-heading {
		font-size: 3.5rem;
		line-height: 1.2;
		margin-bottom: 2.5rem;
	}
}

@media (min-width: 992px) {
	.masthead {
		padding-top: 12rem;
		padding-bottom: 12rem;
	}

	.masthead .masthead-heading {
		font-size: 4.5rem;
	}
}

/* Navigation */
.navbar,
.navbar-newage {
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px);
	padding-top: 1rem;
	padding-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.navbar-sticky.navbar-stuck {
	background: rgba(255, 255, 255, 0.98) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
	color: #1D809F !important;
	font-size: 1.5rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.navbar-brand:hover {
	color: #1a6d87 !important;
}

.nav-link {
	color: #212529 !important;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 0.5rem 1rem !important;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
	color: #1D809F !important;
}

.navbar .btn-icon {
	color: #1D809F !important;
	transition: all 0.3s ease;
}

.navbar .btn-icon:hover {
	color: #1a6d87 !important;
	transform: scale(1.05);
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) !important;
	border: none !important;
	color: #fff !important;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(29, 128, 159, 0.4);
	transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background: linear-gradient(135deg, #1a6d87 0%, #1D809F 100%) !important;
	box-shadow: 0 6px 20px rgba(29, 128, 159, 0.5);
	transform: translateY(-2px);
	color: #fff !important;
}

.btn-xl {
	padding: 1rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	border-radius: 50px;
}

/* Section Headers */
section h2.text-uppercase,
section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

section h3.section-subheading {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.75;
	color: #6c757d;
	margin-bottom: 2rem;
}

/* Services Section - Stylish Portfolio Style (Full Width, Dark Background) */
#services {
	position: relative;
	background: linear-gradient(135deg, rgba(29, 128, 159, 0.9) 0%, rgba(26, 109, 135, 0.9) 100%);
	padding: 0;
	margin: 0 auto !important;
	max-width: 100%;
	width: 100%;
}

#services .container,
#services .container-fluid {
	max-width: 100%;
}

#services h2,
#services .section-heading {
	color: #fff !important;
	background: none;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: #fff;
	background-clip: initial;
}

#services h3.section-subheading,
#services .section-subheading {
	color: rgba(255, 255, 255, 0.9) !important;
}

.service-item {
	text-align: center;
	padding: 2rem 1.5rem;
	transition: all 0.3s ease;
	border-radius: 0;
	height: 100%;
	background: transparent;
	border: none;
}

.service-item:hover {
	transform: translateY(-5px);
}

/* Service Icon Circle - White Background with Teal Icons */
.service-item [class*="ci-"],
.service-item i,
.service-item span {
	font-size: 2.5rem !important;
	color: #1D809F !important;
	margin: 0 auto 1.5rem;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 7rem;
	background: #fff;
	border: none;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: initial;
	-webkit-text-fill-color: #1D809F;
	background-clip: initial;
	filter: none;
	line-height: 1;
	text-align: center;
}

.service-item:hover [class*="ci-"],
.service-item:hover i,
.service-item:hover span {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-item h4 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 1.25rem;
	color: #fff;
	transition: color 0.3s ease;
}

.service-item:hover h4 {
	color: #fff;
}

.service-item p {
	color: rgba(255, 255, 255, 0.95) !important;
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-section {
	padding: 0;
	background: #fff;
}

/* Portfolio Section - Full Width Grid Layout (Stylish Portfolio Style) */
.portfolio-section .container-fluid {
	padding: 0;
}

.portfolio-section .row {
	margin: 0;
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}

.portfolio-section .row .mb-4 {
	margin-bottom: 0 !important;
}

.portfolio-section [class*="col-"] {
	padding: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

/* Mobile: 1 item per row */
@media (max-width: 767px) {
	.portfolio-section [class*="col-"] {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.portfolio-item {
	position: relative;
	display: block;
	margin: 0;
	cursor: pointer;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
	transition: all 0.5s ease;
	background: #fff;
	height: 400px;
	transform: scale(1);
}

.portfolio-item:hover {
	box-shadow: inset 0 0 0 2px rgba(29, 128, 159, 0.3);
	transform: scale(0.95);
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.portfolio-item:hover img {
	transform: scale(1.05);
	filter: blur(3px);
}

/* Portfolio item text (below image) */
.portfolio-item h4,
.portfolio-item .h4 {
	color: #212529;
	font-weight: 700;
	font-size: 1.25rem;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

.portfolio-item p,
.portfolio-item .text-muted {
	color: #6c757d;
	font-size: 0.95rem;
	margin-bottom: 0;
}

.portfolio-item a {
	text-decoration: none;
	color: inherit;
}

.portfolio-item:hover h4,
.portfolio-item:hover .h4 {
	color: #1D809F;
}

/* Portfolio overlay (on hover over image) - Stylish Portfolio Style */
.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(29, 128, 159, 0.9) 0%, rgba(26, 109, 135, 0.9) 100%);
	opacity: 0;
	transition: all 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 0;
	padding: 2rem;
	transform: scale(0);
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
	transform: scale(1);
}

.portfolio-overlay h4,
.portfolio-overlay p,
.portfolio-overlay .h4,
.portfolio-overlay .text-muted {
	color: #fff !important;
	margin: 0;
	transform: translateY(30px);
	transition: transform 0.5s ease 0.1s;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .h4,
.portfolio-item:hover .portfolio-overlay .text-muted {
	transform: translateY(0);
}

.portfolio-overlay h4,
.portfolio-overlay .h4 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.portfolio-overlay p,
.portfolio-overlay .text-muted {
	font-weight: 300;
	opacity: 0.95;
	font-size: 1.1rem;
	text-align: center;
}

/* Portfolio Grid Responsive */
@media (min-width: 1200px) {
	.portfolio-item {
		height: 450px;
	}
}

@media (max-width: 991px) {
	.portfolio-item {
		height: 350px;
	}
}

@media (max-width: 767px) {
	.portfolio-item {
		height: 300px;
	}

	.portfolio-overlay h4,
	.portfolio-overlay .h4 {
		font-size: 1.5rem;
	}

	.portfolio-overlay p,
	.portfolio-overlay .text-muted {
		font-size: 1rem;
	}
}

@media (max-width: 575px) {
	.portfolio-item {
		height: 250px;
	}

	.portfolio-overlay h4,
	.portfolio-overlay .h4 {
		font-size: 1.25rem;
	}

	.portfolio-overlay p,
	.portfolio-overlay .text-muted {
		font-size: 0.9rem;
	}
}

/* Team Section */
.team-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.team-member {
	text-align: center;
	margin-bottom: 3rem;
	transition: all 0.5s ease;
	transform: scale(1);
	position: relative;
}

.team-member:hover {
	transform: scale(0.95);
}

.team-member img {
	width: 14rem;
	height: 14rem;
	border: 0.375rem solid transparent;
	background: linear-gradient(white, white) padding-box,
		linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) border-box;
	margin: 0 auto 1rem;
	transition: all 0.5s ease;
	box-shadow: 0 5px 20px rgba(29, 128, 159, 0.15);
	border-radius: 50%;
	object-fit: cover;
}

.team-member:hover img {
	box-shadow: 0 10px 30px rgba(29, 128, 159, 0.3);
	transform: scale(1.1);
}

.team-member h4 {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
	color: #212529;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.5s ease;
}

.team-member:hover h4 {
	opacity: 1;
	transform: translateY(0);
}

.team-member p {
	margin-top: 0.5rem;
	color: #6c757d;
	font-weight: 300;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.5s ease 0.1s;
}

.team-member:hover p {
	opacity: 1;
	transform: translateY(0);
}

/* Social Buttons */
.btn-social,
.btn-newage-social {
	height: 2.5rem;
	width: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 100%;
	transition: all 0.5s ease;
}

.btn-dark,
.btn-newage-social {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) !important;
	border: none !important;
	color: #fff !important;
}

.btn-dark:hover,
.btn-newage-social:hover {
	background: linear-gradient(135deg, #1a6d87 0%, #1D809F 100%) !important;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(29, 128, 159, 0.4);
}

/* Hide social buttons in team member by default */
.team-member .btn-social,
.team-member .btn-newage-social,
.team-member .btn-dark {
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.5s ease 0.2s;
}

/* Show social buttons on team member hover */
.team-member:hover .btn-social,
.team-member:hover .btn-newage-social,
.team-member:hover .btn-dark {
	opacity: 1;
	transform: translateY(0);
}

/* Footer */
footer,
.footer,
.site-footer,
.newage-footer {
	padding: 3rem 0;
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	color: #fff;
	text-align: center;
}

footer a,
.footer a,
.site-footer a,
.newage-footer a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

footer a:hover,
.footer a:hover,
.site-footer a:hover,
.newage-footer a:hover {
	color: #fff;
}

/* Section Spacing */
section {
	padding: 5rem 0;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Body Background */
body {
	background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.masthead {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	section {
		padding: 3rem 0;
	}

	.service-item {
		padding: 2rem 1rem;
	}

	section h2.text-uppercase,
	section h2 {
		font-size: 2rem;
	}
}

/* About Timeline Section */
.timeline {
	position: relative;
	padding: 0;
	list-style: none;
	margin: 0 auto;
}

.timeline:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	margin-left: -1.5px;
	content: "";
	background: linear-gradient(180deg, #1D809F 0%, #1a6d87 100%);
	z-index: 1;
	border-radius: 2px;
}

.timeline-item {
	position: relative;
	margin-bottom: 100px;
	min-height: 170px;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item:before,
.timeline-item:after {
	content: " ";
	display: table;
}

.timeline-item:after {
	clear: both;
}

.timeline-image {
	position: absolute;
	z-index: 100;
	left: 50%;
	width: 170px;
	height: 170px;
	margin-left: -85px;
	text-align: center;
	color: white;
	border: 5px solid transparent;
	background: linear-gradient(white, white) padding-box,
		linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) border-box;
	border-radius: 100%;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(29, 128, 159, 0.2);
	transition: all 0.3s ease;
}

.timeline-item:hover .timeline-image {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(29, 128, 159, 0.3);
}

.timeline-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.timeline-panel {
	position: relative;
	width: 50%;
	padding: 0 20px;
}

.timeline-panel h4 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.timeline-panel h4.subheading {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.timeline-panel p {
	line-height: 1.6;
	margin-bottom: 0;
}

/* Odd items - text on left, image in center */
.timeline-item:nth-child(odd) .timeline-panel {
	float: left;
	text-align: right;
	padding-right: 110px;
}

/* Even items - text on right, image in center */
.timeline-item:nth-child(even) .timeline-panel {
	float: right;
	text-align: left;
	padding-left: 110px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.timeline:before {
		left: 85px;
	}

	.timeline-image {
		left: 85px;
		width: 150px;
		height: 150px;
		margin-left: -75px;
	}

	.timeline-panel {
		width: 100%;
		float: right !important;
		text-align: left !important;
		padding: 0 20px 0 140px !important;
	}
}

@media (max-width: 767px) {
	.timeline:before {
		left: 60px;
	}

	.timeline-image {
		left: 60px;
		width: 100px;
		height: 100px;
		margin-left: -50px;
	}

	.timeline-panel {
		padding: 0 20px 0 90px !important;
	}

	.timeline-panel h4.subheading {
		font-size: 1.25rem;
	}
}

/* Timeline inverted (for "Be Part of Our Story" ending) */
.timeline-item.timeline-inverted .timeline-image {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) padding-box,
		linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline-item.timeline-inverted .timeline-image h4 {
	color: #fff;
	font-weight: 700;
	margin: 0;
	padding: 1rem;
	font-size: 1.25rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Social button icons using CSS */
.social-twitter::before {
	font-family: cartzilla-icons !important;
	content: "\f257";
	/* ci-x icon */
	font-style: normal;
	font-weight: 400 !important;
}

.social-facebook::before {
	font-family: cartzilla-icons !important;
	content: "\f17b";
	/* ci-facebook icon */
	font-style: normal;
	font-weight: 400 !important;
}

.social-linkedin::before {
	font-family: cartzilla-icons !important;
	content: "\f1b0";
	/* ci-linkedin icon */
	font-style: normal;
	font-weight: 400 !important;
}

.bg-gray {
	background-color: ghostwhite;
}

/*
 Product Card Hover Effects */
.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.hover-zoom:hover {
	transform: scale(1.05);
}

.hover-primary:hover {
	color: #ffc800 !important;
}

.bg-gray {
	background-color: #f8f9fa;
}

/* Product Card Hover Effects */
.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
	box-shadow: 0 1rem 2rem rgba(29, 128, 159, 0.15) !important;
}

.hover-zoom:hover {
	transform: scale(1.05);
}

.hover-primary:hover {
	color: #1D809F !important;
}

/* Workflow Progress Bar */
.workflow-progress {
	padding: 2rem 0;
}

.workflow-step {
	min-width: 100px;
}

.step-circle {
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	box-shadow: 0 4px 10px rgba(29, 128, 159, 0.3);
}

.step-circle:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 15px rgba(29, 128, 159, 0.4);
}

.step-label {
	max-width: 120px;
	margin: 0 auto;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.workflow-step {
		min-width: 60px;
	}

	.step-circle {
		width: 32px !important;
		height: 32px !important;
		font-size: 0.9rem !important;
	}

	.step-label {
		font-size: 0.7rem;
		max-width: 80px;
	}
}

/* Time Slot Selection */
.time-slot-btn {
	transition: all 0.3s ease;
	border-width: 2px;
	border-color: #e9ecef;
}

.time-slot-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 0.25rem 0.5rem rgba(29, 128, 159, 0.2);
	border-color: #1D809F;
}

.btn-check:checked+.time-slot-btn {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) !important;
	border-color: transparent !important;
	color: #fff !important;
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(29, 128, 159, 0.4);
}

.btn-check:checked+.time-slot-btn i {
	color: #fff !important;
}

/* Breadcrumb Enhancements */
.breadcrumb {
	margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: "\f13f";
	font-family: cartzilla-icons;
	color: #6c757d;
	opacity: 0.5;
}

.breadcrumb-item a {
	color: #1D809F;
	transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
	color: #1a6d87 !important;
}

.breadcrumb-item.active {
	color: #212529;
}

/* Product Detail Page */
.thumb-swap-container:hover .thumb-swap {
	transform: scale(1.05);
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.thumb-swap {
	transition: all 0.3s ease;
	cursor: pointer;
}

.thumb-swap.border-primary {
	border-color: #ffc800 !important;
}

/* Sticky sidebar */
@media (min-width: 992px) {
	.sticky-top {
		position: sticky;
		top: 20px;
		z-index: 1020;
	}
}

/* Rating stars */
.ci-star-filled,
.ci-star-half {
	font-size: 1.1rem;
}

/* Add to Cart Button Icon */
#btnAddToCart::before {
	font-family: cartzilla-icons;
	content: "\f20a";
	/* ci-shopping-bag */
	margin-right: 0.5rem;
}

/* Additional New Age Theme Enhancements */

/* Card Styles */
.card {
	border: none;
	border-radius: 1rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.card:hover {
	box-shadow: 0 10px 30px rgba(29, 128, 159, 0.15);
	transform: translateY(-5px);
}

/* Badge Styles */
.badge {
	font-weight: 500;
	padding: 0.5em 0.75em;
	border-radius: 50px;
}

.badge.text-bg-primary {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) !important;
}

/* Input Focus States */
.form-control:focus,
.form-select:focus {
	border-color: #1D809F;
	box-shadow: 0 0 0 0.25rem rgba(29, 128, 159, 0.25);
}

/* Link Styles */
a {
	color: #1D809F;
	transition: color 0.3s ease;
}

a:hover {
	color: #1a6d87;
}

/* Alert Styles */
.alert {
	border: none;
	border-radius: 0.75rem;
}

/* Modal Styles */
.modal-content {
	border: none;
	border-radius: 1rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
	border-bottom: 1px solid rgba(29, 128, 159, 0.1);
}

.modal-footer {
	border-top: 1px solid rgba(29, 128, 159, 0.1);
}

/* Pagination */
.pagination .page-link {
	color: #1D809F;
	border-color: #e9ecef;
	transition: all 0.3s ease;
}

.pagination .page-link:hover {
	background-color: #1D809F;
	border-color: #1D809F;
	color: #fff;
}

.pagination .page-item.active .page-link {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	border-color: transparent;
}

/* Dropdown Menu */
.dropdown-menu {
	border: none;
	border-radius: 0.75rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
	background-color: rgba(29, 128, 159, 0.1);
	color: #1D809F;
}

/* Progress Bar */
.progress {
	border-radius: 50px;
	background-color: rgba(29, 128, 159, 0.1);
}

.progress-bar {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	border-radius: 50px;
}

/* Spinner/Loading */
.spinner-border {
	border-color: rgba(29, 128, 159, 0.25);
	border-right-color: #1D809F;
}

/* Table Styles */
.table {
	border-radius: 0.75rem;
	overflow: hidden;
}

.table thead th {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	color: #fff;
	border: none;
	font-weight: 600;
}

/* Tooltip */
.tooltip-inner {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	border-radius: 0.5rem;
}

/* Scrollbar Styling (Webkit browsers) */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #1a6d87 0%, #1D809F 100%);
}

/* Animation Classes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Gradient Text Utility */
.text-gradient {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Background Gradient Utility */
.bg-gradient-primary {
	background: linear-gradient(135deg, #1D809F 0%, #1a6d87 100%) !important;
}

/* Shadow Utilities */
.shadow-primary {
	box-shadow: 0 10px 30px rgba(29, 128, 159, 0.2) !important;
}

.shadow-primary-lg {
	box-shadow: 0 15px 40px rgba(29, 128, 159, 0.3) !important;
}