/*==========================
  HEADER
==========================*/

.site-header {
	position: relative;
	width: 100%;
	background: var(--header-bg);
	z-index: 999;
	box-shadow: var(--box-shadow);
}

.site-header__top {
	background: var(--header-bg);
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.site-header__inner {
	min-height: 82px;
}

.site-header__left {
	gap: 40px;
}

/*==========================
  LOGO
==========================*/

.site-header .site-logo__link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-header .site-logo__image {
	max-height: 60px;
	width: auto;
}

.site-header .site-logo__icon {
	width: 52px;
	height: 52px;
	margin-right: 15px;
	background: var(--tts-buttton-bg1);
}

.site-header .site-logo__title {
	color: var(--header-txt-color);
	font-size: 1.45rem;
	line-height: 1.2;
}

.site-header .site-logo__subtitle {
	color: #777;
	font-size: .82rem;
}

/*==========================
  TOP NAVIGATION
==========================*/

.site-header .site-nav {
	gap: 5px;
	margin-left: 35px;
}

.site-header .site-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 5px 15px;
	border-radius: 30px;
	color: var(--header-txt-color);
	text-decoration: none;
	font-weight: 600;
	transition: .3s;
}

.site-header .site-nav__link:hover {
	color: var(--tts-buttton-bg);
	background-color: rgba(0, 0, 0, 0.07);
}

/* .site-header .site-nav__link::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 6px;
	height: 2px;
	background: var(--tts-buttton-bg);
	transform: scaleX(0);
	transition: .3s;
}

.site-header .site-nav__link:hover::after {
	transform: scaleX(1);
} */

/*==========================
  CONTACT
==========================*/

.site-header .header-contact {
	margin-right: 25px;
}

.site-header .header-contact__link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--header-txt-color);
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
}

.site-header .header-contact__link:hover {
	color: var(--tts-buttton-bg);
}

.site-header .header-contact__icon {
	color: var(--tts-buttton-bg);
}

/*==========================
  USER
==========================*/

.site-header .header-user {
	display: flex;
	align-items: center;
}

.site-header .header-user__login,
.site-header .header-user__button {
	padding: 10px  20px;
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	border: none;
	font-weight: 600;
	transition: .3s;
	font-size: 14px;
	border-radius: 30px;
}

.site-header .header-user__login:hover,
.site-header .header-user__button:hover {
	background: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
}

.site-header .header-user__menu {
	border: 0;
	border-radius: 12px;
	overflow: hidden;
}

.site-header .header-user__menu .dropdown-item {
	padding: 12px 18px;
	transition: .3s;
}

.site-header .header-user__menu .dropdown-item:hover {
	background: rgba(11, 31, 77, .08);
	color: var(--tts-buttton-bg1);
}

/*==========================
  CATEGORY BAR
==========================*/

.site-header .header-category {
	background: var(--tts-buttton-bg1);
}

.site-header .header-category__nav {
	gap: 5px;
}

.site-header .header-category__link {
	position: relative;
	color: #fff !important;
	padding: 15px 22px !important;
	font-weight: 600;
	display: flex;
	align-items: center;
	transition: .3s;
}

.site-header .header-category__link i {
	margin-right: 8px;
}

/* .site-header .header-category__link:hover,
.site-header .header-category__link.active {
	background: var(--tts-buttton-bg);
	color: #fff !important;
} */


.site-header .header-category__link::after {
	content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.site-header .header-category__link:hover::after,
.site-header .header-category__link.active::after{
    transform: scaleX(1);
}
/*==========================
  MOBILE BUTTON
==========================*/

.site-header .header-toggle {
	background: var(--tts-buttton-bg);
	color: #fff;
	border: none;
	width: 44px;
	height: 44px;
}

.site-header .header-toggle:hover {
	background: var(--tts-buttton-bg1);
}

/*==========================
  RESPONSIVE
==========================*/

@media (max-width:991px) {

	.site-header .site-header__inner {
		min-height: 70px;
	}

	.site-header .site-logo__image {
		max-height: 50px;
	}

	.site-header .site-logo__icon {
		width: 46px;
		height: 46px;
	}

	.site-header .site-nav {
		display: none !important;
	}

	.site-header .header-contact {
		display: none !important;
	}
}

@media (max-width:576px) {

	.site-header .site-header__inner {
		min-height: 64px;
	}

	.site-header .site-logo__image {
		max-height: 42px;
	}

	.site-header .site-logo__icon {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.site-header .site-logo__title {
		font-size: 1rem;
	}

	.site-header .site-logo__subtitle {
		display: none;
	}

	.site-header .header-user__login {
		padding: 8px 14px;
		font-size: 14px;
		border-radius: 6px;
	}

	.site-header .header-toggle {
		width: 40px;
		height: 40px;
	}
}


/* ===========================
Mobile Offcanvas
=========================== */
.offcanvas.offcanvas-start.mobileoffcanvas {
	width: 320px;
	background: #f8fafc;
	border-right: 1px solid #e9ecef;
}

.offcanvas.offcanvas-start.mobileoffcanvas .offcanvas-header {
	background: linear-gradient(135deg, var(--tts-buttton-bg), var(--tts-buttton-bg1));
	color: #fff;
	padding: 18px 20px;
}

.offcanvas.offcanvas-start.mobileoffcanvas .offcanvas-header h5 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	color: var(--tts-buttton-txt);
}

.offcanvas.offcanvas-start.mobileoffcanvas .offcanvas-header .btn-close {
	filter: brightness(0) invert(1);
	opacity: 1;
}

.offcanvas.offcanvas-start.mobileoffcanvas .offcanvas-body {
	overflow-y: auto;
	padding: 15px;
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group {
	gap: 10px;
	background: transparent;
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item {
	border: none;
	border-radius: 12px;
	background: transparent;
	padding: 10px 20px;
	color: #343a40;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: .3s;
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item i:first-child {
	width: 28px;
	text-align: center;
	font-size: 18px;
	color: var(--tts-buttton-bg);
	flex-shrink: 0;
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item:hover {
	background: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item:hover i {
	color: var(--tts-buttton-txt);
}

.offcanvas.offcanvas-start.mobileoffcanvas .fa-chevron-down {
	margin-left: auto;
	font-size: 12px;
	transition: .3s;
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item[aria-expanded="true"] .fa-chevron-down,
.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item:not(.collapsed) .fa-chevron-down {
	transform: rotate(180deg);
}

.offcanvas.offcanvas-start.mobileoffcanvas .collapse .list-group-item,
.offcanvas.offcanvas-start.mobileoffcanvas .collapse a {
	background: transparent;
	border-radius: 10px;
	padding: 10px 18px 10px 52px;
	font-size: 14px;
	color: #495057;
	display: block;
	text-decoration: none;
	transition: .3s;
	border: none;
}

.offcanvas.offcanvas-start.mobileoffcanvas .collapse a:hover {
	background: var(--tts-buttton-bg);
	color: #fff;
	padding-left: 58px;
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item.active {
	background: linear-gradient(135deg, var(--tts-buttton-bg), #3b82f6);
	color: #fff;
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item.active i {
	color: #fff;
}

.offcanvas.offcanvas-start.mobileoffcanvas .offcanvas-body::-webkit-scrollbar {
	width: 6px;
}

.offcanvas.offcanvas-start.mobileoffcanvas .offcanvas-body::-webkit-scrollbar-thumb {
	background: #cfd8dc;
	border-radius: 30px;
}

.offcanvas.offcanvas-start.mobileoffcanvas .offcanvas-body::-webkit-scrollbar-thumb:hover {
	background: var(--tts-buttton-bg);
}

.offcanvas.offcanvas-start.mobileoffcanvas .list-group-item {
	animation: slideMenu .35s ease;
}

@keyframes slideMenu {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Header Styling */
#header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px;
	background-color: var(--header-bg);
}

#header .navbar-brand {
	padding: 0;
}

#header .navbar-brand-logo {
	width: 100%;
	max-width: 10rem;
}

/* Navbar Links */
#header .navbar-nav .nav-link {
	font-size: 14px;
	color: var(--header-txt-color) !important;
	padding: 10px 15px;
	font-weight: 500;
	text-transform: capitalize;
	position: relative;
	transition: color 0.3s ease-in-out;
}

#header .navbar-nav .nav-link.active {
	color: var(--tts-buttton-bg) !important;
}

/* Underline Effect */
#header .navbar-nav .nav-link::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--tts-buttton-bg);
	transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

#header .navbar-nav .nav-link.active::before {
	width: 100%;
	left: 0;
}

/* Mega Menu */
@media (min-width: 992px) {
	.navbar-expand-xl .dropdown-toggle::after {
		content: "\f107";
		font-family: 'Font Awesome 6 Pro';
		margin-left: .255em;
		background: none;
		border: 0;
		vertical-align: 0;
	}

	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute;
		top: 120%;
		visibility: hidden;
		opacity: 0;
		display: block;
		transition: all 0.3s ease-in-out;
	}

	.navbar-expand-xl .navbar-nav .dropdown:hover>.dropdown-menu {
		top: 100%;
		visibility: visible;
		opacity: 1;
	}


	/* Mega Menu Full-Width */
	.navbar-expand-xl .dropdown-fullwidth .dropdown-menu {
		background-color: #fff;
		box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05);
		z-index: 99;
		margin: 0 auto;
		padding: 20px;
		border: none;
		min-width: 600px;
		width: auto;
	}


}

.navbar-expand-xl .dropdown-menu {
	padding: 0;
	margin: 0;
}

.navbar-expand-xl .dropdown-menu .mega-menu-content {
	display: flex;
	gap: 10px;
}

.navbar-expand-xl .dropdown-menu .mega-menu-content h6 {
	font-size: 16px;
}

.navbar-expand-xl .dropdown-menu .mega-menu-content .mega-column {
	flex: 1;
	width: 14rem;
}

.navbar-expand-xl .dropdown-menu .mega-menu-content .mega-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.navbar-expand-xl .dropdown-menu .mega-menu-content .mega-column ul li a {
	text-decoration: none;
	font-size: 14px;
	color: #263853;
	transition: color 0.3s ease-in-out;
	display: block;
	padding: 5px 0;
}

.navbar-expand-xl .dropdown-menu .mega-menu-content .mega-column ul li a:hover {
	color: var(--tts-buttton-bg);
}

/* Toll-Free Section */
.toll-free-cont {
	display: flex;
	gap: 6px;
	align-items: center;
	position: relative;
	z-index: 9;
}

.section-call p {
	margin: 0;
	color: #333;
	font-weight: 400;
	font-size: clamp(12px, 1vw, 14px);
	text-align: end;
}

.section-call a {
	text-decoration: none;
	color: var(--tts-buttton-bg);
	font-weight: 600;
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 22px;
}

/* Call Icon */
.section-call-icon {
	position: relative;
}

.section-call-icon img {
	width: 45px;
	height: 45px;
	background: rgba(198, 39, 128, 0.22);
	border-radius: 50%;
}

/* Call Active Effect */
.section-call-icon::after {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background: #22c448;
	border-radius: 50%;
	right: -4px;
	top: 2px;
	border: 3px solid #fff;
}

.toll-free-cont::before {
	position: absolute;
	top: 0;
	left: -5px;
	content: "";
	width: 212px;
	height: 50px;
	animation: call-effect 1.5s cubic-bezier(.42, .14, .43, 1) infinite;
	box-shadow: #ff6600 0 0 50px 50px inset;
	border-radius: 25px;
	opacity: 0;
}

@keyframes call-effect {
	0% {
		transform: scale(0.1);
		opacity: 0.2;
	}

	50% {
		opacity: 0.4;
	}

	100% {
		transform: scale(1.1);
		opacity: 0;
	}
}

/* Button Styling */
.button-area .btn-outline-secondary {
	background: var(--tts-buttton-bg);
	border-color: var(--tts-buttton-bg);
	padding: 10px 12px;
	color: var(--tts-buttton-txt) !important;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

.button-area .btn-outline-secondary:hover {
	background-color: var(--tts-buttton-bg1);
	color: var(--tts-buttton-txt1);
	border-color: var(--tts-buttton-bg1);
}

.button-area .btn-outline-secondary.bg-btn {
	background-color: var(--tts-buttton-bg);
	color: var(--tts-buttton-txt);
	/* border-color: var(--tts-buttton-bg1); */
	border: 1px solid var(--tts-buttton-bg);
	border-radius: 5px;
}

/* Mobile Styles */
@media (max-width: 576px) {
	.section-call a {
		font-size: 14px;
	}

	.section-call p {
		font-size: 10px;
	}

	#header .navbar-brand-logo {
		max-width: 6rem;
	}

	.section-call-icon img,
	.toll-free-cont::before,
	.section-call-icon::after {
		display: none;
	}

	#header .navbar-nav .nav-link {
		line-height: normal;
	}

	.offcanvas.offcanvas-end {
		width: 300px;
	}

	.navbar-expand-xl .dropdown-menu .mega-menu-content {
		flex-direction: column;
	}
}


.modaldesign .modal-content {
	border: none;
	position: relative;
	padding: 0 !important;
	-webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
	border-radius: 10px;
}

.modaldesign .modal-header.bg-image {
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 0;
	border: none;
	height: 250px;
	z-index: 0;
}

.modaldesign .modal-header.bg-image::after {
	content: "";
	position: absolute;
	inset: 0;
	/* background: linear-gradient(45deg, #dd00ff, #3e65ff); */
	opacity: 0.4;
	z-index: 0;
	border-radius: 10px;
}

.modaldesign .modal-header .close {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #fff;
	font-size: 20px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.3);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modaldesign .modal-body {
	margin-top: -115px;
	z-index: 1;
	position: relative;
}

.modaldesign .modal-title {
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
}

.modaldesign .icon-wrapper {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	font-size: 30px;
	margin: 0 auto;
	margin-bottom: 10px;
	background: rgba(255, 255, 255, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modaldesign .icon-wrapper img {
	max-width: 100%;
}

.modaldesign .subtitle {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: #555;
}

.modaldesign .contact-info p {
	margin-bottom: 5px;
}

.modaldesign .contact-info p a {
	color: inherit;
}