:root {
 	--primary-color: #61a203;
	--secondary-color: #111519;
	--text-color: #475569;
	--bg-color: #F6F8F9;
	--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
	font-family: var(--font-family);
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: normal;
	font-weight: 700;
	color: var(--secondary-color);
}

h1 {
	font-size: 2.4rem;
}

h2 {
	font-size: 2.2rem;
}

p, li {
	color: #475569;
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 30px;
}

li {
	font-size: 1.1rem;
}
.mt_4 {
	margin-top: 1.5rem;
}
.mb_4 {
	margin-bottom: 1.5rem;
}
.mt-6 {
	margin-top: 5rem
}

.mb-6 {
	margin-bottom: 5rem;
}

.pt-6 {
	padding-top: 5rem
}

.pb-6 {
	padding-bottom: 5rem;
}
button:focus,
.btn:focus-visible,
.btn:first-child:active:focus-visible,
.form-control:focus {
	box-shadow: none !important;
	background: none;
}

:not(.btn-check)+.btn:active {
	background-color: transparent;
}

.hero-section {
		background: linear-gradient(360deg, rgba(249, 240, 191, 0) 0%, rgba(234, 255, 201, 0.4) 100%);
	}
.gen-btn, .reset-btn {
	padding: .65rem 1.3rem;
	background: var(--primary-color);
	border-radius: 3rem;
	font-size: 1.125rem;
	color: #fff;
	transition: all .3s ease-in;
}

.gen-btn {
	background: var(--primary-color);
	border: 1px solid var(--primary-color) !important;
}
.gen-btn:hover, .gen-btn:focus {
	background: #4d7c0f;
	color: #fff;
}
.reset-btn {
	border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    border: 1px solid #4b5563;
	background: #4b5563;
    color: #fff;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
}
.reset-btn:hover, .reset-btn:focus {
    border: 1px solid #4b5563;
	color: #4b5563;
}
.primary-bg {
	background-color: var(--bg-color);
}
/* Tab Button Start  */
.tab-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.tab-btn {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    border: 1px solid #111827;
    background: white;
    color: #111827;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
}
.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(101, 163, 13, 0.2);
}
.tab-btn:hover, .tab-btn:focus {
    background-color: #f9fff5;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
@media (max-width: 991px) {
	.tab-group {
		flex-wrap: nowrap;
		justify-content: normal;
		overflow-x: auto;
	}
	.tab-btn {
		flex-shrink: 0;
	}
}
/* Tab Button End  */

.breadcrumb-container {
display: inline-block;
    background-color: #f1f8e9;
    border: 1px dashed var(--primary-color);
    border-radius: 50px;
    padding: 2px 20px;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
}

.breadcrumb-list a, .breadcrumb-list li {
  text-decoration: none;
  color: inherit;
	font-size: .9rem;
}

.separator {
  font-size: 22px;
  line-height: 1;
  color: #333;
}



/* NavBar */
header {
	box-shadow: 0 4px 17px rgba(0, 0, 0, .1);
}

header .nav-link {
	color: #000 !important;
	font-weight: 600;
	padding-right: 0.3rem !important;
	position: relative;
	width: fit-content;
}

header .nav-link::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: calc(100% - 12px);
	height: 2px;
	background: var(--primary-color);
	transform: scale(0, 1);
	transition: transform .3s ease;
}

header .nav-btn .genral-btn {
	padding: 0.5rem 1.3rem;
}

header .nav-link .active,
header .nav-link:hover::before {
	transform: scale(1, 1);
}

header .nav-link.active {
	color: var(--primary-color) !important;
}

header .dropdown-menu {
	position: absolute !important;
	box-shadow: 0 4px 17px rgba(0, 0, 0, .1);
}

header .dropdown-toggle {
	cursor: pointer;
}

header .dropdown-toggle:hover .dropdown {
	display: block;
}

header .dropdown-toggle::after {
	margin-left: 0;
}

header .dropdown-item {
	font-weight: 500;
	color: #333;
	padding: 0.5rem 1rem;
}

header .dropdown-item:hover {
	color: var(--primary-color);
	background: none;
}
/* Add dropdown arrow icon */
.menu-arrow-icon::after {
	content: "";
	border: solid var(--secondary-color);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	margin-left: 8px;
	transition: transform 0.3s ease;
	position: relative;
	bottom: 2px;
}

/* Sub-menu dropdown Styling */
.navbar-nav>li>ul {
	position: fixed;
	background: #fff;
	min-width: 250px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	opacity: 0;
	visibility: hidden;
	display: none;
	transform: translateY(20px) scale(0.95);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid #e9ecef;
	list-style: none;
	margin: 0;
	padding: 15px 0;
	z-index: 1000;
}

/* Sub-menu Styling */
.navbar-nav ul li a {
	padding: 12px 25px;
	font-size: 15px;
	font-weight: 500;
	color: #000;
	text-transform: none;
	letter-spacing: 0;
	display: block;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.navbar-nav ul li a:hover,
.navbar-nav ul li a:focus {
	color: var(--secondary-color);
	background: rgb(237 245 220);
	border-left-color: var(--secondary-color);
	padding-left: 30px;
	transform: none;
}
@media (min-width: 992px) {
	.navbar-nav>li:hover .menu-arrow-icon::after {
		transform: rotate(225deg);
		border-color: var(--secondary-color);
	}

	.navbar-nav>li:hover>ul {
		opacity: 1;
		visibility: visible;
		transform: translateY(0) scale(1);
		display: block;
		transform: translateX(-50%) translateY(0) scale(1) !important;
		margin-left: 5rem;
	}
}


@media (max-width: 992px) {
    .open-sub-menu .menu-arrow-icon:after {
        transform: rotate(225deg);
        border-color: var(--secondary-color-dark);
    }

    .open-sub-menu ul {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        display: block !important;
    }
    .mega-menu.open-sub-menu ul {
        transform: none !important;
        min-width: 100% !important;
    }

}

/* Show dropdown on hover */
/* Header End */

/* Footer Start */

footer {
	background: #88bb1626;
	border-top: 2px solid var(--primary-color);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

footer img {
	max-width: 100%;
}

footer a {
	text-decoration: none;
	transition: all .3s ease;
}

footer a:hover,
footer a:focus {
	text-decoration: underline;
	outline: none;
	color: #ffffff;
}

footer p {
	font-size: 1.1rem;
	color: var(--secondary-color);
}

.footer-widget h6 {
	color: var(--secondary-color);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	width: fit-content;
}

.footer-widget ul li {
	line-height: 36px;
}

.footer-widget ul li a {
	color: var(--secondary-color);
	font-size: 1rem;
}

.footer-widget ul li a:hover {
	color: var(--primary-color);
}

/* Footer End */
@media (max-width: 575px) {
	h1, h2 {
		font-size: 2rem;
		line-height: 1.3;
	}
	p {
		font-size: 1.1rem;
	}
	.gen-btn {
		font-size: 1rem;
	}
}