/* ===== Hero Section ===== */
.hero-primary-block {
	position: relative;
	width: 100%;
	min-height: 50vh;
	/* Full-screen hero */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	background: var(--light);
}

/* Video Background */
.hero-primary-block video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 1;
}

/* Dark Overlay for readability */
.hero-primary-block::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	/* adjustable overlay darkness */
	z-index: 2;
}

/* Overlay Content */
.hero-overlay {
	position: relative;
	z-index: 3;
	max-width: 800px;
	margin: auto;
	padding: 2rem;
}

/* Heading */
.hero-overlay .hero-heading {
	font-size: 3rem;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	line-height: 1.3;
	margin-bottom: 1rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-overlay p {
	font-size: 1.2rem;
	font-family: 'Lato', sans-serif;
	color: #f1f1f1;
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* CTA Button */
.btn-gradient {
	background: var(--gradient);
	border: none;
	color: #fff;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 50px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.btn-gradient:hover {
	background: linear-gradient(135deg, #27ae60, #1e8449);
	transform: translateY(-2px);
	box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-overlay .hero-heading {
		font-size: 2.2rem;
	}

	.hero-overlay p {
		font-size: 1rem;
	}
}

/*  */
/* Quick Contact Form Section */
.quick-contact-form-block>.container {
	background: var(--gradient, linear-gradient(135deg, #2e7d32, #66bb6a));
	color: #fff;
	text-align: center;
	padding: 30px 20px !important;
	border-radius: 3rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quick-contact-form-block h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.quick-contact-form-block p {
	font-size: 1.1rem;
	margin-bottom: 40px;
	max-width: 991px;
	margin-left: auto;
	margin-right: auto;
	color: #f1f1f1;
}

/* Form Controls */
.quick-contact-form-block .form-control {
	border-radius: 10px;
	padding: 12px 15px;
	font-size: 1rem;
	border: 2px solid transparent;
	transition: 0.3s ease-in-out;
}

.quick-contact-form-block .form-control:focus {
	border-color: #2e7d32;
	box-shadow: 0 0 10px rgba(46, 125, 50, 0.3);
	outline: none;
}

/* Dropdown Styling */
.quick-contact-form-block select.form-control {
	appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232e7d32' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 12px center;
	background-size: 18px;
	cursor: pointer;
}

/* Submit Button */
.quick-contact-form-block .btn {
	border-radius: 10px;
	padding: 12px 25px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}

.quick-contact-form-block .btn-outline-primary {
	border: 2px solid #fff;
	color: #fff;
	background: transparent;
}

.quick-contact-form-block .btn-outline-primary:hover {
	background: #fff;
	color: #2e7d32;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
	.quick-contact-form-block h2 {
		font-size: 1.6rem;
	}

	.quick-contact-form-block p {
		font-size: 1rem;
	}

	.quick-contact-form-block .form-control {
		font-size: 0.95rem;
	}
}

/*  */
.diseases-section {
	background: var(--light-bg);
}

.disease-card {
	background: #efefef;
	border-radius: 1rem;
	padding: 30px 20px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	text-align: center;
}

.disease-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.disease-card .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 15px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.disease-card .icon img {
	border-radius: 5rem;
}

.disease-card h5 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 8px;
}

.disease-card p {
	font-size: 0.95rem;
	color: var(--muted-text);
	margin: 0;
}

.btn-green {
	background: var(--primary-green);
	color: var(--primary-green);
	padding: 12px 28px;
	font-size: 1rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}

.btn-green:hover {
	background: var(--primary-green);
}

/*  */
/* Section Styling */
.why-us-section {
	padding: 60px 20px;
	background-image: url(https://vedicacupressure.com/wp-content/uploads/2025/09/10037.jpg);
	background-attachment: fixed;
	background-color: #fffffff2;
	background-size: cover;
	background-position: center bottom;
	text-align: center;
	color: #333;
	background-blend-mode: overlay;
}

/* Heading */
.section-heading h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 1rem 0;
}

.section-heading p {
	max-width: 700px;
	margin: 0 auto 40px auto;
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
}

/* Icon */
.section-icon {
	width: 5rem;
	height: auto;
	margin-bottom: 10px;
	border-radius: 3rem;
}

/* Cards Container */
.why-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 25px;
	margin-top: 20px;
}

/* Single Card */
.why-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding-bottom: 10px;
}

.why-card img {
	width: auto;
	height: 136px;
	padding: 1rem;
	object-fit: cover;
}

.why-card p {
	padding: 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	color: #333;
	text-align: center;
}

/* Hover Effect */
.why-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/*  */
/* About Hero Section */
.about-hero-section {
	background: linear-gradient(135deg, #f3f9f6, #e6f2ed);
	/* soft pastel green gradient */
	padding: 80px 20px;
	border-radius: 12px;
}

.about-hero-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--primary);
	/* deep natural green */
	margin-bottom: 20px;
	line-height: 1.2;
}

.about-hero-subtitle {
	font-size: 1.1rem;
	color: #444;
	max-width: 850px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.about-hero-title {
		font-size: 2rem;
	}

	.about-hero-subtitle {
		font-size: 1rem;
		padding: 0 10px;
	}
}

/* Mission & Vision Section */
.mission-vision-section {
	background: #f9fafb;
	/* light clean background */
	padding: 80px 20px 0 20px;
	border-radius: 12px;
	position: relative;
	z-index: 1;
}

/* Section Heading */
.section-title {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--primary);
	/* natural deep green */
	margin-bottom: 10px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #555;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Card Styling */
.mv-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 25px 30px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
.mv-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	background: var(--gradient);
}

.mv-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #24594a;
	margin-bottom: 10px;
}

.mv-text {
	font-size: 1rem;
	color: #444;
	line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}

	.mv-card {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.mv-icon {
		margin: 0 auto 15px;
	}
}

/*  */
/* Unique Selling Points Section */
.unique-selling-points {
	background: #ffffff;
	padding: 0px 20px 80px 20px;
	position: relative;
	z-index: 1;
}

/* Section Headings */
.unique-selling-points .section-title {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--primary);
	/* deep natural green */
	margin-bottom: 10px;
}

.unique-selling-points .section-subtitle {
	font-size: 1.1rem;
	color: #555;
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.6;
}

/* USP Cards */
.usp-card {
	background: #f9fafb;
	border-radius: 14px;
	padding: 35px 25px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.usp-card:hover {
	transform: translateY(-6px);
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
.usp-icon {
	font-size: 2.5rem;
	margin-bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff !important;
	box-shadow: 0 5px 15px rgba(36, 89, 191, 0.3);
	transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon {
	transform: rotate(10deg) scale(1.05);
}

/* Title + Text */
.usp-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #24594a;
	margin-bottom: 12px;
}

.usp-text {
	font-size: 1rem;
	color: #444;
	line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
	.usp-card {
		padding: 28px 20px;
	}
}

@media (max-width: 768px) {
	.unique-selling-points .section-title {
		font-size: 2rem;
	}

	.usp-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
}

/*  */
/* 🌿 Core Values Section */
.core-values-section {
	background: #f9f9f9;
	padding: 60px 0;
}

.core-values-section .section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	position: relative;
	display: inline-block;
}

.core-values-section .section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--gradient);
	margin: 10px auto 0;
	border-radius: 2px;
}

/* 🌟 Value Cards (Desktop) */
.value-card {
	background: #fff;
	border: 2px solid #e6e6e6;
	padding: 20px;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	color: #333;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
	cursor: pointer;
}

.value-card:hover {
	background: var(--gradient);
	color: #fff;
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* 📱 Value Pills (Mobile) */
.value-pill {
	background: #fff;
	border: 1px solid #ddd;
	padding: 10px 20px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary);
	border-radius: 50px;
	white-space: nowrap;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.value-pill:hover {
	background: var(--gradient);
	color: #fff;
	border-color: transparent;
	transform: scale(1.05);
}

/*  */
/* 🌿 Team Section */
.team-section {
	background: #fff;
	padding: 70px 0;
}

.team-section .section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	position: relative;
	display: inline-block;
}

.team-section .section-title::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	background: var(--gradient);
	margin: 10px auto 0;
	border-radius: 2px;
}

.team-section .section-subtitle {
	font-size: 1rem;
	color: #555;
	max-width: 600px;
	margin: 0 auto 40px;
}

/* 👥 Team Card */
.team-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 📸 Image Styling */
.team-card .team-image {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.team-card:hover .team-image {
	transform: scale(1.05);
}

/* ℹ️ Team Info */
.team-card .team-info {
	padding: 18px 15px;
	background: #fff;
}

.team-card .name {
	font-size: 1.1rem;
	font-weight: 600;
	color: #24594a;
}

.team-card .role {
	font-size: 0.95rem;
	color: #000;
	font-weight: 500;
}

/* ✨ Hover Overlay (optional for extra effect) */
.team-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #8ace0611, #335b5211);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.team-card:hover::before {
	opacity: 1;
}

.team-card .team-info {
	position: relative;
	z-index: 2;
}

/*  */
/* Testimonial Section */
.testimonial-section {
	background: #f9fafc;
	position: relative;
	z-index: 1;
}

.testimonial-section .section-subtitle {
	font-size: 1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.testimonial-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 15px;
	padding: 25px;
	text-align: left;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
	font-size: 1rem;
	color: #444;
	font-style: italic;
	margin-bottom: 15px;
	line-height: 1.6;
}

.testimonial-author {
	font-weight: 600;
	color: #24594a;
	/* highlight color */
}

.testimonial-role {
	font-size: 0.9rem;
	color: #888;
}

/* Trusted Logos */
.trusted-logos {
	margin-top: 50px;
}

.trusted-logos .client-logo {
	max-height: 150px;
	object-fit: contain;
	filter: grayscale(50%);
	transition: all 0.3s ease-in-out;
	border-radius: 10rem;
}

.trusted-logos .client-logo:hover {
	filter: grayscale(0%);
	transform: scale(1.05);
}
@media (max-width: 767px) {
	.trusted-logos .client-logo {
		max-height: 100px;
	}
}
/*  */
/* CTA Section */
.cta-section {
	background: var(--gradient);
	position: relative;
	z-index: 1;
}

.cta-heading {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}

.cta-subheading {
	font-size: 1.1rem;
	color: #f1f1f1;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.cta-button {
	background: var(--gradient);
	color: #fff;
	font-weight: 600;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	display: inline-block;
}

.cta-button:hover {
	background: #f1f1f1;
	color: #24594a;
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/*  */
/* Healing Tips Section */
.healing-tips-section {
	background: #fafafa;
	position: relative;
	z-index: 1;
}

.healing-heading {
	font-size: 2rem;
	font-weight: 700;
	color: #2459bf;
}

.healing-subheading {
	font-size: 1.1rem;
	color: #555;
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.6;
}

.healing-tip-card {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.healing-tip-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.healing-tip-number {
	font-size: 1.8rem;
	font-weight: 700;
	color: #5715a4;
	min-width: 45px;
}

.healing-tip-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: #2459bf;
}

.healing-tip-card p {
	margin: 0;
	color: #555;
	font-size: 1rem;
	line-height: 1.5;
}

.healing-note {
	font-size: 1.1rem;
	color: #444;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
	font-style: italic;
}

/*  */
.contact-form .custom-btn {
	color: #fff;
	background: var(--gradient);
	border: none;
	transition: 1s ease all !important;
}

.contact-form .custom-btn:hover {
	background: linear-gradient(90deg, #8ace06, #8ace06);
}


/*  */
figue.image-wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
}

figue.image-wrapper > img {
    width: 100%;
    height: auto;
}


/*  */
/* =========================
   What We Do Section Styles
========================= */
.services-section {
  background: #f9fafb; /* soft background */
  padding: 80px 0;
}


.services-section .section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  max-width: 767px;
  margin-left: auto;
}
.service-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card .icon-wrapper {
width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 50%;
    overflow: hidden;
}

.service-card .icon-wrapper img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.service-card .service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card .service-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .services-section .section-title,
  .services-section .section-subtitle {
    text-align: center !important;
    margin: 0 auto 20px;
  }

  .service-card {
    text-align: center;
    padding: 25px 20px;
  }
}

/*  */
/* Testimonials Section */
.testimonials {
  background: #f8f9fa; /* light gray */
}


/* Testimonial Card */
.testimonial-card {
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}

/* Rating Stars (if stars are used as icons) */
.testimonial-card .text-warning {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Review Text */
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Client Image */
.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f1f1;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
  border-color: #ffcc00; /* highlight on hover */
}

/* Client Name */
.testimonial-card h6 {
  font-size: 1rem;
  color: #222;
}

.testimonial-card small {
  font-size: 0.85rem;
  color: #777;
}

/*  */


/* Section Styles */
.why-choose-us-section {
  background: #f9fafb;
}


.why-choose-us-section .section-subtitle {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card Styles */
.why-card {
  transition: all 0.3s ease-in-out;
	background: #0000 !important;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-card  .icon-wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.why-card .icon-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.why-card h5 {
  font-size: 1.2rem;
  color: #333;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}



/*  */
/* Accordion Button Default */
.accordion-button {
  background-color: #fff;
  color: #333;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
	box-shadow: none !important;
}

/* Hover */
.accordion-button:hover {
  background-color: #e6f4ea; /* light green hover */
}

/* Active/Open State */
.accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Accordion Body */
.accordion-body {
  color: #555;
  line-height: 1.6;
  background: #fff;
  border-radius: 0 0 8px 8px;
}



