@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');
/* colors */
:root {
	--bg-color1: #1b7572;
	--bg-color2: #b8dbd9;
	--bg-color3: #f0fcfb;
	--text-color1: #000;
	--text-color2: #fff;
}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* ! navbar */
.navbar {
	background-color: var(--bg-color2);
	font-weight: 500;
}
.dash_pb {
	background-color: var(--bg-color3);
}

.navbar-brand {
	color: var(--text-color1);
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 2px;
}

.pub-nav .nav-item {
	margin-right: 8px;
}

.pub-nav .nav-link {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--text-color1);
	transition: all 0.3s ease;
	padding: 8px 12px;
	position: relative;
	border: 1px solid transparent;
	border-radius: 25px;
}

.pub-nav .nav-link:hover {
	color: var(--bg-color1);
	background-color: #edfbfa;
	border-color: var(--bg-color1);
}

/* Center the menu items */
.pub-nav.m-auto {
	display: flex;
	justify-content: center;
}

/* Move the login button to the right */
.pub-nav.mb-2.mb-lg-0.navbar-ul {
	margin-left: auto;
}
/* navbar */

.top-navbar {
	position: sticky;
	top: 0;
	padding-left: 30px;
	border-bottom: 2px solid var(--text-color1);
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 200px;
	padding-top: 0.2rem;
	background-color: var(--bg-color2);
	color: #fff;
	z-index: 100;
	/* Increase the z-index value to bring the sidebar above the navbar */
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
	margin-top: 66px;
	transition: width 0.3s ease, margin-left 0.3s ease;
}

.sidebar .nav-link,
.dropdown-item, .user-dropdown .nav-link {
	font-size: 18px;
	text-transform:capitalize;
	color: var(--text-color1);
	transition: all 0.3s ease;
	margin: auto;
	padding: 8px 12px;
	position: relative;
	border-bottom: 2px solid transparent;
}

.sidebar .nav-link:hover,
.dropdown-item:hover, .user-dropdown .nav-link:hover, .collapse-btn:hover {
	color: var(--bg-color1);
	background-color: #edfbfa;
	border-color: var(--bg-color1);
}

.content {
	margin-left: 210px;
	padding: 5px;
	transition: margin-left 0.3s ease;
}
.sidebar.collapsed~.content {
	margin-left: 50px;
}

.collapse-btn {
	/* Existing styles... */
	color: var(--text-color1);
	border: none;
	font-size: 24px;
	cursor: pointer;
	margin-left: 175px;
	transition: margin-left 0.3s ease;
}

.sidebar.collapsed {
	width: 50px;
}

.sidebar.collapsed .nav-item .nav-link {
	display: none;
}

.sidebar.collapsed .collapse-btn {
	margin-left: 25px;
}

/* Responsive styles */
@media (max-width: 991.98px) {
	.top-navbar {
		padding-left: 10px;
		/* Adjust padding for mobile */
	}

	.sidebar {
		width: 100%;
		/* Make the sidebar full-width for mobile */
		margin-top: 0px;
		/* Add a margin to push the sidebar below the navbar */
		position: static;
		/* Remove fixed positioning */
		box-shadow: none;
		/* Remove shadow for mobile */
	}

	.sidebar .nav-link,
	.dropdown-item {
		font-size: 16px;
		/* Adjust font size for mobile */
		text-align: center;
		/* Center align menu items on mobile */
		padding: 10px;
		/* Adjust padding for mobile */
	}

	.content {
		margin-left: 0;
		/* Remove the margin on the left for mobile */
		padding: 10px;
		/* Adjust padding for mobile */
	}
}
/* ! dashboard - navbar, sidebar */
/* ! profile */
.profile-info-item {
	margin-bottom: 10px;
}

.profile-info-item .label {
	font-weight: bold;
	margin-right: 2px;
	margin-left: 5px;
}

.profile-info-item hr {
	border-color: #e2e2e2;
	margin: 10px 0;
}
/* ! profile */
/* ! hero section */
.hero {
	/* background-image: linear-gradient(to bottom, #a3d8d6, #fff); */
	padding: 100px 0;
	margin-top: 20px;
}

/* Style the heading */
.hero h1 {
	font-size: 2.5rem;
}

/* Style the lead text */
.hero p.lead {
	font-size: 1.25rem;
}

/* Center the buttons on smaller screens */
@media (max-width: 768px) {
	.custom_btn1 {
		display: block;
		margin: 10px auto;
	}
}
/* ! hero section */
/* !index cards */
.hvr:hover {
	transform: scale(1.005);
	transition: transform 0.2s ease;
	box-shadow: 0 0 5px #1b7572;
}
/* .logo:hover {
	transform: scale(1.11);
	transition: transform 0.3s ease;
} */
/* !index cards */
/* ! accordion section */
.accordion-button{
	background-color: #d8e9e8;
}
.bg-lt{
	background-color: #F8f9fa;
	border: solid 1px #cfcfcf;
}
.accordion-button:hover {
	background-color: #1b7572;
	color: white;
	box-shadow: none;
	/* Remove default box shadow */
}
.accordion-button:focus {
	box-shadow: none;
	outline: none;
}
/* Add this CSS to your stylesheet */
.custom-accordion-button {
	background-color: #f8f9fa;
	color: #343a40;
	border: 1px solid #b7b8b8;
	padding: 10px 15px;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.custom-accordion-button:hover {
	background-color: #e2e3e5;
	color: #212529;
	border-color: #ced4da;
}

.custom-accordion-button i {
	margin-top: 3px;
	margin-right: 2px;
	transition: transform 0.2s;
}

.custom-accordion-button:not(.collapsed) i {
	transform: rotate(90deg);
}

/* Remove focus border */
.custom-accordion-button:focus {
	box-shadow: none;
	outline: none;
}
/* ! accordion section */
/* ! tables card body */
.tbl-card-body{
	background-color: var(--bg-color2);
	font-family: 'Roboto', sans-serif;
	border-radius: 0 0 5px 5px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* ! buttons */
.custom_btn {
	display: inline-block;
	padding: 10px 25px;
	background-color: var(--bg-color1);
	color: var(--text-color2);
	font-size: 16px;
	font-weight: bold;
	text-transform: capitalize;
	border: 2px solid var(--text-color1);
	/* Add border to the button */
	border-radius: 0px;
	transition: background-color 0.2s ease, border 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.custom_btn:hover {
	background-color: #1a6d68;
	border: 2px solid transparent;
	color: var(--text-color2);
}

.custom_btn1 {
	display: inline-block;
	padding: 10px 25px;
	background-color: var(--text-color2);
	/* Background color */
	color: var(--bg-color1);
	/* Text color */
	font-size: 16px;
	font-weight: bold;
	text-transform: capitalize;
	border: 2px solid var(--bg-color1);
	/* Border color */
	border-radius: 25px;
	transition: background-color 0.2s ease, border 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.custom_btn1:hover {
	background-color: var(--bg-color1);
	/* Background color on hover */
	border: 2px solid transparent;
	/* Hide the border on hover */
	color: var(--text-color2);
	/* Text color on hover */
}
.check_btn:hover{
	color: rgb(24, 148, 24) !important;
}

/* buttons */
/* ! form */
.frm {
	background-color: var(--bg-color2);
	font-family: 'Roboto', sans-serif;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.req {
	position: relative;
}

.req::after {
	content: '*';
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	color: #ff0000;
}
.req_custom {
	position: relative;
}
.req_custom::after {
	content: '*';
	position: absolute;
	top: 50%;
	right: -5px;
	transform: translateY(-50%);
	color: #ff0000;
}

.forgot-ps a:hover {
	text-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.form-group input, .form-group textarea {
	border-radius: 20px !important;
	border: 1px solid var(--bg-color1);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.form-group input[type='number'] {
	border-radius: 0 !important;
	border-top: 1px solid var(--bg-color1);
	border-bottom: 1px solid var(--bg-color1);
	border-radius: 20px !important;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.form-check input {
	border: 1px solid var(--bg-color1);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.form-group select {
	border-radius: 20px !important;
	border: 1px solid var(--bg-color1);
}

.form-control {
	border-radius: 5px;
}

.form-control:focus,
.form-select:focus {
	box-shadow: inset 0 -1px 0 var(--bg-color1);
}

.form-select {
	border-radius: 5px;
}
.form-check-input,
.form-check-label {
	cursor: pointer;
}
.form-check-input:checked,
.form-check-input:focus,
.form-check-label:focus {
	outline: none;
	box-shadow: none;
}
/*  end-form */

/* ! Footer */
footer {
	background-color: var(--bg-color3);
	padding: 10px 0;
	position: fixed;
	margin: 0 auto;
	right: 0;
	bottom: 0;
	left: 0;
}

.container {
	max-width: 1250px;
	margin: 0 auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* Footer Box */
.footer-box {
	flex: 0 0 calc(33.333% - 20px);
	padding: 5px;
	text-align: center;
}

.footer-box h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.footer-box ul {
	list-style: none;
	padding: 0;
}

.footer-box ul li {
	margin-bottom: 5px;
}

.footer-box ul li a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-box ul li a:hover {
	color: #0165E1;
}

.footer-box p {
	line-height: 1.6;
	margin-bottom: 5px;
	color: #666;
}

/* Social Icons */

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 18px;
	color: #666;
	text-decoration: none;
	border-radius: 50%;
	background-color: #ffffff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.social-icons a:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Updated Font Awesome classes */
.social-icons a i {
	line-height: 1;
}

/* Social Icons Hover Colors */
.social-icons a:hover i.fa-facebook {
	color: #0165E1;
}

.social-icons a:hover i.fa-linkedin {
	color: #0A66C2;
}

.social-icons a:hover i.fa-youtube {
	color: #FF0000;
}

.social-icons a:hover i.fa-twitter {
	color: #00acee;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.footer-box {
		flex: 0 0 calc(50% - 20px);
	}
}

@media (max-width: 767px) {
	.footer-box {
		flex: 0 0 100%;
	}
}
/* footer */
.services .card-body i {
	font-size: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.carousel-caption {
		bottom: 125px;
	}
	.carousel-caption p {
		width: 100%;
	}
	.card {
		margin-bottom: 30px;
	}
	.img-area img {
		width: 100%;
	}
}
