/*!
Theme Name: wellnessPro_theme
Theme URI: http://underscores.me/
Author: wellnessPro.com
Author URI: https://wellnessPro.com/
Description: Custom Tailwind-based WordPress theme
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wellnesspro_theme
Tags: custom-logo, custom-menu, featured-images
*/

/* Style */

/* @import url(https://db.onlinewebfonts.com/c/fe02bfc5f3b1c47a45f3167457958cbe?family=Nuckle); */
/* @import url(https://db.onlinewebfonts.com/c/fd2cec73d62bf933ca616e43f1ca53fa?family=Gavency+Free); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	/* --gavency-font: Gavency Free; */
	/* --gavency-font: 'Gavency', sans-serif; */
	--shadow-sm: 0 2px 8px #2d5f4e14;
	--shadow-md: 0 4px 16px #2d5f4e1f;
	--shadow-lg: 0 8px 32px #2d5f4e29;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	/* font-family: "Nuckle"; */
	font-family: "Montserrat", sans-serif;
	background: #fff;
	color: #404040;
	line-height: 1.5;
}

.font-gavency {
	font-weight: 600;
}

/* Media */
img,
svg,
video,
canvas {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Links */
a {
	text-decoration: none;
	color: inherit;
}

/* WORDPRESS CORE SUPPORT */

.custom-logo-link {
	display: inline-block;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	background: #f1f1f1;
	padding: 12px 16px;
	z-index: 100000;
}

/* Hide default page title on home */
.page .entry-title {
	display: none;
}

/* HEADER / NAV */

.site-header {
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.site-branding {
	width: 50%;
}

.main-navigation {
	width: 50%;
	display: flex;
	justify-content: flex-end;
}

.nav-menu {
	display: flex;
	gap: 20px;
}

.main-navigation a {
	color: #000;
}

.site-title a {
	color: #000;
}

/* Remove sidebar & editor links */
#secondary,
.widget-area,
.edit-link {
	display: none;
}

/* CUSTOM ANIMATIONS */

@keyframes float {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(-30px, 30px) scale(1.1);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

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

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

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

header.shadow-soft{
	box-shadow: 2px 0px 6px #00000063;
}

/* BookDemo Section */

.bookDemo-section {}

.bookform-leftArea {
	height: 490px;
}

.bookform-rightsection {
	position: absolute;
	right: 0px;
	bottom: 0;
	background-color: #fbfbfb9e;
	border-top-left-radius: 30px;
	padding: 50px 0px 0px 40px;
}

.bookform-rightsection::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 50px;
	background-image: url(../../uploads/2026/02/form-top.png);
	background-size: 54px;
	width: 80px;
	height: 20px;
	background-repeat: no-repeat;
}

.bookform-area {
	border-top-left-radius: 20px;
	padding-right: 120px !important
}

.bookform-formArea {
	width: 450px;
}

/* Contact Form Style */
.cf7-row {
	margin-bottom: 15px;
}

.cf7-row.two-col {
	display: flex;
	gap: 15px;
}

.cf7-field {
	width: 100%;
}

.cf7-field input,
.cf7-field select {
	width: 100%;
	padding: 14px 16px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 14px;
	background: #fff;
}

.cf7-field input:focus,
.cf7-field select:focus {
	outline: none;
	border-color: #4d6666;
}

.wpcf7-submit {
	width: 100%;
	padding: 15px;
	font-weight: 600;
	background-color: #3A5659;
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
}

.wpcf7-submit:hover {
	background-color: #23523B;
}

.wpcf7-response-output {
	display: none;
}

.wpcf7-spinner {
	display: none;
}

/* Footer Section */

.footer-widget h3 {
	margin-bottom: 24px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

.footerIndustry-area ul {
	display: flex;
	flex-wrap: wrap;
}

.footerIndustry-area ul li {
	width: 50%;
}

.footerIndustry-area ul li a {
	font-size: 15px;
	color: #fff;
	display: inline-block;
	padding-bottom: 15px;
	font-weight: 400;
	transition: 0.6s;
}

.footerIndustry-area ul li a:hover {
	padding-left: 5px;
}

.footerPageLink-area {
	padding-left: 55%;
}

.footerPageLink-area ul li {
	display: block;
}

.footerPageLink-area ul li a {
	font-size: 15px;
	color: #fff;
	display: inline-block;
	font-weight: 400;
	transition: 0.6s;
	padding-bottom: 15px;
}

.footerPageLink-area ul li a:hover {
	padding-left: 5px;
}

.footerContactInfo-area .wp-block-list {
	margin-top: 30px;
}

.footerContactInfo-area .wp-block-list li {
	font-size: 15px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 15px;
}

.footerContactInfo-area .wp-block-list li a {
	font-size: 15px;
	color: #fff;
	font-weight: 400;
}

.footerContactInfo-area .wp-block-list li a:hover {
	text-decoration: underline;
}

.footerContactInfo-area .footer-socialArea li {
	display: inline-block;
	padding-right: 10px;
}

.footerContactInfo-area .footer-socialArea li:last-child {
	padding-right: 0px;
}

.footerContactInfo-area .footer-socialArea li a {
	background-color: #657b7d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	transition: 0.6s;
}

.footerContactInfo-area .footer-socialArea li a:hover {
	box-shadow: 0px 3px 5px #00000082;
}

/* Tab Section */

.tab-btn {
	width: 130px;
	/* min-height: 115px; */
	overflow: hidden;
	transition: 0.6s;
	opacity: 0.4;
}

.tab-btn.active-tab {
	opacity: 1;
	transition: 0.6s;
}

.tab-btn span {
	background-color: #f3e8e8 !important;
	width: 60px;
	height: 60px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.tab-btn span img {
	width: 30px;
	height: 30px;
}

.tab-btn p {
	padding-top: 10px;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	transition: 0.6s;
	letter-spacing: 1px;
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.faq-questionarea{
	width: calc(100% - 32px);
}

/* Responsive */

@media screen and (max-width:1300px) {
	.bookform-area {
		padding-right: 70px !important;
	}
}

@media screen and (max-width:1199px) {
	.bookform-area {
		padding-right: 50px !important;
	}
}

@media screen and (max-width:1080px) {
	.bookform-area {
		padding-right: 40px !important;
	}

	.logo-Area{
		width: 220px;
	}

}

@media screen and (max-width: 1024px) {
	.footerPageLink-area {
		padding-left: 0;
	}

	.footerIndustry-area .wp-block-list{
		width: 50%;
	}
}

@media screen and (max-width: 992px) {
	.bookform-leftArea {
		height: auto;
	}

	.bookform-rightsection {
		position: relative;
		border-top-right-radius: 30px;
		width: 80%;
		padding-right: 40px;
		margin: 49px auto 0px;
	}

	.bookform-formArea {
		width: auto;
	}

	.bookform-area {
		border-top-right-radius: 20px;
	}

}

@media screen and (max-width: 768px) {

	.bookform-rightsection {
		width: 100%;
	}

}

@media screen and (max-width:575px) {
	.footerIndustry-area .wp-block-list {
        width: 80%;
    }

	.bookform-area{
		padding: 30px 20px;
	}

	.bookform-rightsection{
		padding: 40px 20px 0px;
	}

	.bookform-rightsection::before {
		top: 15px;
		left: 30px;
		background-size: 45px;
		width: 60px;
		height: 15px;
	}
	.contact-form-wrapper .cf7-row.two-col{
		flex-wrap: wrap;
	}
 
}

@media screen and (max-width:480px) {
	.footerIndustry-area .wp-block-list {
        width: 100%;
    }
}