/* Custom CSS for Mediworld IVF */

:root {
	--primary-blue: #4f8ac8;
	--primary-pink: #d163a8;
	--light-gray: #f8f9fa;
	--dark-gray: #333333;
	--white: #ffffff;
}

/* General Styles */
body {
	font-family: "Poppins", sans-serif;
	color: #333;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

.section-padding {
	padding: 100px 0;
}

.section-title {
	margin-bottom: 60px;
	text-align: center;
}

.section-title h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title p {
	font-size: 18px;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

/* Gradient Text */
.gradient-text {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Gradient Background */
.gradient-bg {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
}

/* Buttons */
.btn-primary {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border: none;
	color: white;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	width: max-content !important;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	background: linear-gradient(to right, #3d7bb5, #c14d95);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-blue);
	color: var(--primary-blue);
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: var(--primary-blue);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white {
	background: white;
	color: var(--primary-blue);
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}
.btn-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	background: #f8f9fa;
	color: var(--primary-blue);
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}
a.navbar-brand img {
	width: 180px;
}

.header.scrolled {
	/* background-color: rgba(255, 255, 255, 0.95); */
	backdrop-filter: blur(10px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


.navbar-brand {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav-link {
	color: #333;
	font-weight: 500;
	padding: 10px 15px !important;
	transition: all 0.3s ease;
}

.nav-link:hover {
	color: var(--primary-blue);
}

/* Mega Dropdown */
.mega-dropdown {
	position: static !important;
}

.mega-dropdown-menu {
	padding: 20px 0;
	width: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border: none;
	border-radius: 15px;
}

.mega-dropdown-menu h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mega-dropdown-menu ul {
	list-style: none;
	padding-left: 0;
}

.mega-dropdown-menu li a {
	display: block;
	padding: 5px 0;
	color: #666;
	font-size: 14px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.mega-dropdown-menu li a:hover {
	color: var(--primary-blue);
	transform: translateX(5px);
}

/* Hero Section */
.hero-section {
	height: 100vh;
	min-height: 700px;
	background: linear-gradient(to bottom right, var(--primary-blue), var(--primary-pink));
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
section.hero-section video {
	width: 100%;
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
	color: white;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 22px;
	margin-bottom: 30px;
	opacity: 0.9;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	margin-top: 30px;
}

.hero-bg-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px),
		radial-gradient(circle at 75% 75%, white 2px, transparent 2px);
	background-size: 100px 100px;
}

.floating-element {
	position: absolute;
	opacity: 0.1;
	color: white;
	font-size: 80px;
}

.floating-element:nth-child(1) {
	top: 20%;
	left: 10%;
	animation: float1 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
	top: 60%;
	left: 80%;
	animation: float2 8s ease-in-out infinite;
}

.floating-element:nth-child(3) {
	top: 30%;
	left: 70%;
	animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
	0%,
	100% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

@keyframes float2 {
	0%,
	100% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-15px) rotate(-5deg);
	}
}

@keyframes float3 {
	0%,
	100% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-25px) rotate(3deg);
	}
}

/* Stats Section */
.stats-section {
	background: linear-gradient(to right, #f8f9fa, #e6f0f9);
}

.stat-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-label {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.stat-description {
	color: #666;
	font-size: 14px;
}

/* Services Section */
.service-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	width: 70px;
	height: 70px;
	margin-bottom: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
}

.service-icon.female {
	background: linear-gradient(to right, #ff7eb3, #ff758c);
}

.service-icon.male {
	background: linear-gradient(to right, #36d1dc, #5b86e5);
}

.service-icon.tests {
	background: linear-gradient(to right, #8e2de2, #4a00e0);
}

.service-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
	transition: all 0.3s ease;
}

.service-card:hover .service-title {
	color: var(--primary-blue);
}

.service-description {
	color: #666;
	margin-bottom: 20px;
}

.service-treatments {
	margin-bottom: 20px;
}

.service-treatment {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 14px;
	color: #666;
}

.service-treatment-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	margin-right: 10px;
	flex-shrink: 0;
}

/* About Section */
.about-section {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
}

.about-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
}

.about-image img {
	width: 100%;
	height: auto;
	transition: all 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

.about-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.about-stat {
	background: white;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-stat-number {
	font-size: 28px;
	font-weight: 700;
}

.about-stat-number.blue {
	color: var(--primary-blue);
}

.about-stat-number.pink {
	color: var(--primary-pink);
}

.about-stat-label {
	font-size: 14px;
	color: #666;
}

.timeline {
	background: white;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-title {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.timeline-item {
	display: flex;
	align-items: center;
	padding: 15px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.timeline-item:hover {
	background: #f8f9fa;
}

.timeline-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	margin-right: 15px;
	flex-shrink: 0;
}

.timeline-content .year {
	font-weight: 600;
	color: var(--primary-blue);
}

.timeline-content .event {
	color: #666;
}

/* Why Choose Us Section */
.feature-row {
	margin-bottom: 80px;
}

.feature-row:last-child {
	margin-bottom: 0;
}

.feature-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
}

.feature-image img {
	width: 100%;
	height: auto;
	transition: all 0.5s ease;
}

.feature-image:hover img {
	transform: scale(1.05);
}

.feature-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.feature-content:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.feature-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.feature-description {
	font-size: 18px;
	color: #666;
	margin-bottom: 20px;
}

.feature-divider {
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 2px;
}

.trust-indicators {
	background: linear-gradient(to right, #f8f9fa, #e6f0f9);
	border-radius: 15px;
	padding: 40px 40px 0px 40px;
	margin-top: 0px;
}

.trust-item {
	text-align: center;
}

.trust-icon {
	font-size: 48px;
	margin-bottom: 15px;
}

.trust-icon.blue {
	color: var(--primary-blue);
}

.trust-icon.pink {
	color: var(--primary-pink);
}

.trust-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.trust-description {
	color: #666;
}

/* Testimonials Section */
.testimonials-section {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
	position: relative;
	overflow: hidden;
}

.testimonials-bg-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bg-circle {
	position: absolute;
	border-radius: 50%;
}

.bg-circle-1 {
	top: 100px;
	left: 50px;
	width: 300px;
	height: 300px;
	background: var(--primary-blue);
	opacity: 0.05;
	filter: blur(50px);
}

.bg-circle-2 {
	bottom: 100px;
	right: 50px;
	width: 400px;
	height: 400px;
	background: var(--primary-pink);
	opacity: 0.05;
	filter: blur(60px);
}

.video-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.video-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
	position: relative;
	height: 200px;
	background-size: cover;
	background-position: center;
}

.video-thumbnail::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail::after {
	background: rgba(0, 0, 0, 0.1);
}
.video-card img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: top;
}
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	font-size: 24px;
	z-index: 2;
	transition: all 0.3s ease;
}

.video-card:hover .play-button {
	background: white;
	transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 4px;
	z-index: 2;
}

.video-content {
	padding: 20px;
}

.video-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
	transition: all 0.3s ease;
}

.video-card:hover .video-title {
	color: var(--primary-blue);
}

.video-description {
	font-size: 14px;
	color: #666;
}

.testimonial-cta {
	background: white;
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	max-width: 800px;
	margin: 0px auto 0;
}

.testimonial-cta-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.testimonial-cta-text {
	color: #666;
	margin-bottom: 20px;
}

/* Doctors Section */
.doctor-card {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.doctor-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.doctor-image-container {
	position: relative;
	margin-bottom: 20px;
	text-align: center;
}
.doctor-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
	border: 4px solid white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

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

.doctor-badge {
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(60px);
	width: 30px;
	height: 30px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
}

.doctor-info {
	text-align: left;
}

.doctor-name {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #333;
	transition: all 0.3s ease;
}

.doctor-card:hover .doctor-name {
	color: var(--primary-blue);
}

.doctor-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-pink);
	margin-bottom: 10px;
}

.doctor-specialization {
	color: #666;
	margin-bottom: 15px;
}

.doctor-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px;
}

.doctor-stat {
	display: flex;
	align-items: center;
	justify-content: start;
	font-size: 14px;
	font-weight: 500;
}

.doctor-stat i {
	margin-right: 5px;
}

.doctor-stat.blue i {
	color: var(--primary-blue);
}

.doctor-stat.pink i {
	color: var(--primary-pink);
}

.doctor-achievements {
	text-align: left;
}

.doctor-achievement {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 14px;
	color: #666;
}

.doctor-achievement-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	margin-right: 10px;
	flex-shrink: 0;
}

/* Resources Section */
.resource-card {
	background: white;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.resource-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
	transform: scale(1.1) rotate(5deg);
}

.resource-icon.red {
	background: linear-gradient(to right, #ff7eb3, #ff758c);
}

.resource-icon.blue {
	background: linear-gradient(to right, #36d1dc, #5b86e5);
}

.resource-icon.green {
	background: linear-gradient(to right, #11998e, #38ef7d);
}

.resource-icon.purple {
	background: linear-gradient(to right, #8e2de2, #4a00e0);
}

.resource-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
	transition: all 0.3s ease;
}

.resource-card:hover .resource-title {
	color: var(--primary-blue);
}

.resource-description {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
}

.resource-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.resource-count {
	font-size: 13px;
	font-weight: 500;
	color: var(--primary-blue);
}

.resource-arrow {
	color: #ccc;
	transition: all 0.3s ease;
}

.resource-card:hover .resource-arrow {
	color: var(--primary-blue);
	transform: translateX(5px);
}

.blog-section {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-top: 60px;
}

.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.blog-title {
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.blog-card {
	background: #f8f9fa;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
}

.blog-card:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
	height: 180px;
	background-size: cover;
	background-position: center;
	transition: all 0.3s ease;
}

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

.blog-content {
	padding: 20px;
}

.blog-date {
	font-size: 13px;
	color: var(--primary-blue);
	margin-bottom: 10px;
}

.blog-card-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
	transition: all 0.3s ease;
}

.blog-card:hover .blog-card-title {
	color: var(--primary-blue);
}

.blog-excerpt {
	font-size: 14px;
	color: #666;
}

.newsletter-section {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	color: white;
	margin-top: 60px;
}

.newsletter-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.newsletter-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.newsletter-text {
	opacity: 0.9;
	margin-bottom: 25px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-input {
	flex: 1;
	padding: 15px 20px;
	border-radius: 50px 0 0 50px;
	border: none;
	font-size: 16px;
}

.newsletter-button {
	background: white;
	color: var(--primary-blue);
	border: none;
	padding: 15px 25px;
	border-radius: 0 50px 50px 0;
	font-weight: 600;
	transition: all 0.3s ease;
}

.newsletter-button:hover {
	background: #f8f9fa;
}

/* Contact Section */
.contact-info-section {
	padding-bottom: 0;
}
.contact-form {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #333;
}

.form-group {
	margin-bottom: 20px;
}

.form-control {
	height: 50px;
	border-radius: 10px;
	border: 1px solid #ddd;
	padding: 10px 15px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(79, 138, 200, 0.2);
}

textarea.form-control {
	height: 150px;
	resize: none;
}

.contact-card {
	background: white;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
	transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-card-title {
	color: var(--primary-blue);
}

.contact-card-details {
	font-weight: 500;
	margin-bottom: 5px;
}

.contact-card-subtext {
	font-size: 13px;
	color: #666;
}

.map-placeholder {
	background: #f8f9fa;
	height: 300px;
	align-items: center;
	justify-content: center;
	color: #666;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
}
.map-placeholder iframe {
	height: 300px;
	width: 100%;
	border-radius: 12px;

}

.emergency-contact {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	color: white;
}

.emergency-icon {
	font-size: 32px;
	margin-bottom: 15px;
}

.emergency-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.emergency-text {
	opacity: 0.9;
	margin-bottom: 15px;
	font-size: 14px;
}

/* Footer */
.footer {
	background: linear-gradient(to bottom right, #333, #222);
	color: white;
	padding-top: 80px;
}

.footer-brand {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.footer-brand-icon {
	font-size: 32px;
	color: var(--primary-pink);
	margin-right: 10px;
}

.footer-brand-text {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-about {
	color: #ccc;
	margin-bottom: 25px;
	line-height: 1.7;
}

.footer-contact {
	margin-bottom: 30px;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #ccc;
}

.footer-contact-icon {
	width: 20px;
	margin-right: 15px;
	color: var(--primary-blue);
}

.footer-contact-icon.pink {
	color: var(--primary-pink);
}

.footer-heading {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: white;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link {
	margin-bottom: 10px;
}

.footer-link a {
	color: #ccc;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-link a:hover {
	color: var(--primary-blue);
	padding-left: 5px;
}

.footer-newsletter {
	background: linear-gradient(to right, rgba(79, 138, 200, 0.1), rgba(209, 99, 168, 0.1));
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 60px;
}

.footer-newsletter-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-newsletter-text {
	color: #ccc;
	margin-bottom: 20px;
	text-align: center;
}

.footer-newsletter-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
}

.footer-newsletter-input {
	flex: 1;
	padding: 12px 15px;
	border-radius: 50px 0 0 50px;
	border: none;
	background: rgba(255, 255, 255, 0.1);
	color: white;
}

.footer-newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-button {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 0 50px 50px 0;
	font-weight: 600;
	transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
	background: linear-gradient(to right, #3d7bb5, #c14d95);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 0;
}

.footer-copyright {
	color: #999;
	font-size: 14px;
}

.footer-copyright a {
	color: #ccc;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-copyright a:hover {
	color: var(--primary-blue);
}

.footer-social {
	display: flex;
	justify-content: flex-end;
}
.footer-brand img {
	width: 220px;
}


.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ccc;
	margin-left: 10px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-link:hover {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	color: white;
	transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
	.section-padding {
		padding: 80px 0;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.hero-title {
		font-size: 42px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.feature-row {
		margin-bottom: 60px;
	}

	.feature-image {
		margin-bottom: 30px;
	}

	.doctor-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.section-padding {
		padding: 60px 0;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.section-title p {
		font-size: 16px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.stat-card {
		margin-bottom: 20px;
	}

	.service-card {
		margin-bottom: 20px;
	}

	.about-image {
		margin-bottom: 30px;
	}

	.video-card {
		margin-bottom: 20px;
	}

	.resource-card {
		margin-bottom: 20px;
	}

	.blog-card {
		margin-bottom: 20px;
	}

	.contact-card {
		margin-bottom: 20px;
	}

	.map-placeholder {
		margin-top: 30px;
	}

	.emergency-contact {
		margin-top: 30px;
	}

	.footer-column {
		margin-bottom: 30px;
	}

	.footer-social {
		justify-content: center;
		margin-top: 20px;
	}

	.footer-copyright {
		text-align: center;
	}
}

@media (max-width: 575px) {
	.section-padding {
		padding: 50px 0;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.hero-title {
		font-size: 32px;
	}

	.btn-primary,
	.btn-outline,
	.btn-white {
		padding: 10px 20px;
		font-size: 14px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-input {
		border-radius: 50px;
		margin-bottom: 10px;
	}

	.newsletter-button {
		border-radius: 50px;
	}

	.footer-newsletter-form {
		flex-direction: column;
	}

	.footer-newsletter-input {
		border-radius: 50px;
		margin-bottom: 10px;
	}

	.footer-newsletter-button {
		border-radius: 50px;
	}
}

/* Animation Classes */
.fade-in {
	animation: fadeIn 1s ease forwards;
}

.fade-in-up {
	animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
	animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
	animation: fadeInRight 1s ease forwards;
}

.stagger-1 {
	animation-delay: 0.1s;
}

.stagger-2 {
	animation-delay: 0.2s;
}

.stagger-3 {
	animation-delay: 0.3s;
}

.stagger-4 {
	animation-delay: 0.4s;
}

.stagger-5 {
	animation-delay: 0.5s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Page Specific Styles */

/* About Page */
.about-hero {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	padding: 120px 0 80px;
	color: white;
	text-align: center;
}

.about-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.about-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.about-mission {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin-top: -50px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.about-mission-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-mission-text {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
}

.about-values {
	/* margin-top: 80px; */
	padding-top: 0;
}
.value-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.value-card:hover .value-icon {
	transform: scale(1.1) rotate(5deg);
}

.value-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.value-description {
	color: #666;
}

.team-section {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
}

/* Services Page */
.service-hero {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	padding: 120px 0 80px;
	color: white;
	text-align: center;
}

.service-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.service-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.service-category {
	margin-bottom: 80px;
}

.service-category-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.service-item {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
	transform: scale(1.1) rotate(5deg);
}

.service-item-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
	transition: all 0.3s ease;
}

.service-item:hover .service-item-title {
	color: var(--primary-blue);
}

.service-item-description {
	color: #666;
	margin-bottom: 20px;
}

.service-item-link {
	display: inline-flex;
	align-items: center;
	color: var(--primary-blue);
	font-weight: 500;
	transition: all 0.3s ease;
}

.service-item-link i {
	margin-left: 5px;
	transition: all 0.3s ease;
}

.service-item:hover .service-item-link i {
	transform: translateX(5px);
}

/* Service Single Page */
.service-detail-hero {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	padding: 120px 0 80px;
	color: white;
}

.service-detail-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.service-detail-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	opacity: 0.9;
}

.service-detail-content {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin-top: -50px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.service-detail-image {
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
}

.service-detail-image img {
	width: 100%;
	height: auto;
}

.service-detail-text {
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.service-detail-features {
	margin-bottom: 30px;
}

.service-detail-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.service-detail-feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	margin-right: 20px;
	flex-shrink: 0;
}

.service-detail-feature-content h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.service-detail-feature-content p {
	color: #666;
	font-size: 14px;
}

.service-detail-cta {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
}

.service-detail-cta-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-detail-cta-text {
	color: #666;
	margin-bottom: 20px;
}

/* Counseling Services Page */
.counseling-hero {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	padding: 120px 0 80px;
	color: white;
	text-align: center;
}

.counseling-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.counseling-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.counseling-intro {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin-top: -50px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
	text-align: center;
}

.counseling-intro-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.counseling-intro-text {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

.counseling-services {
	margin-top: 80px;
}

.counseling-service {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.counseling-service:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.counseling-service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.counseling-service:hover .counseling-service-icon {
	transform: scale(1.1) rotate(5deg);
}

.counseling-service-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.counseling-service-description {
	color: #666;
	margin-bottom: 20px;
}

.counseling-service-benefits {
	margin-bottom: 20px;
}

.counseling-service-benefit {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 14px;
	color: #666;
}

.counseling-service-benefit-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	margin-right: 10px;
	flex-shrink: 0;
}

/* Tests Main Page */
.tests-hero {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	padding: 120px 0 80px;
	color: white;
	text-align: center;
}

.tests-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.tests-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.tests-intro {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin-top: -50px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
	text-align: center;
}

.tests-intro-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.tests-intro-text {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

.tests-categories {
	margin-top: 80px;
}

.test-item {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.test-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.test-item-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.test-item:hover .test-item-icon {
	transform: scale(1.1) rotate(5deg);
}

.test-item-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
	transition: all 0.3s ease;
}

.test-item:hover .test-item-title {
	color: var(--primary-blue);
}

.test-item-description {
	color: #666;
	margin-bottom: 20px;
}

.test-item-link {
	display: inline-flex;
	align-items: center;
	color: var(--primary-blue);
	font-weight: 500;
	transition: all 0.3s ease;
}

.test-item-link i {
	margin-left: 5px;
	transition: all 0.3s ease;
}

.test-item:hover .test-item-link i {
	transform: translateX(5px);
}

/* Test Single Page */
.test-detail-hero {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	padding: 120px 0 80px;
	color: white;
}

.test-detail-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.test-detail-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	opacity: 0.9;
}

.test-detail-content {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin-top: -50px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.test-detail-image {
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
}

.test-detail-image img {
	width: 100%;
	height: auto;
}

.test-detail-text {
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.test-detail-info {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
}

.test-detail-info-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.test-detail-info-item {
	display: flex;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 15px;
}

.test-detail-info-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.test-detail-info-label {
	font-weight: 600;
	color: #333;
	width: 150px;
	flex-shrink: 0;
}

.test-detail-info-value {
	color: #666;
}

.test-detail-faq {
	margin-bottom: 30px;
}

.test-detail-faq-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.test-detail-faq-item {
	margin-bottom: 20px;
}

.test-detail-faq-question {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.test-detail-faq-answer {
	color: #666;
	line-height: 1.7;
}

/* Locations Page */
.locations-hero {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	padding: 120px 0 80px;
	color: white;
	text-align: center;
}

.locations-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.locations-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.locations-intro {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin-top: -50px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
	text-align: center;
}

.locations-intro-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.locations-intro-text {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

.location-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.location-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.location-content {
	padding: 30px;
}

.location-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
	transition: all 0.3s ease;
}

.location-card:hover .location-title {
	color: var(--primary-blue);
}

.location-address {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	color: #666;
}

.location-address i {
	color: var(--primary-blue);
	margin-right: 10px;
	margin-top: 5px;
	flex-shrink: 0;
}

.location-contact {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #666;
}

.location-contact i {
	color: var(--primary-pink);
	margin-right: 10px;
	flex-shrink: 0;
}

.location-hours {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	color: #666;
}

.location-hours i {
	color: var(--primary-blue);
	margin-right: 10px;
	margin-top: 5px;
	flex-shrink: 0;
}

.location-map {
	height: 200px;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	margin-top: 20px;
	border-radius: 10px;
}

/* Contact Us Page */
.contact-hero {
	background: linear-gradient(to right, #d163a89e, var(--primary-blue));
	padding: 120px 0 80px;
	color: white;
	text-align: center;
}

.contact-hero-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.contact-hero-subtitle {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.contact-info-section {
	margin-top: -50px;
	position: relative;
	z-index: 2;
}

.contact-info-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	text-align: center;
}

.contact-info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
	transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}

.contact-info-details {
	font-weight: 500;
	margin-bottom: 5px;
	color: #333;
}

.contact-info-subtext {
	font-size: 14px;
	color: #666;
}

/* .contact-form-section {
margin-top: 80px;
} */

.contact-form-container {
	background: linear-gradient(to bottom right, #f8f9fa, #e6f0f9);
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #333;
}

.contact-map-container {
	background: #f8f9fa;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	width: 100%;
}
.contact-map-container iframe {
	width: 100%;
}

.contact-emergency {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	color: white;
	margin-top: 30px;
}
.contact-emergency a {
	background: var(--primary-blue);
	color: #fff;
}

.contact-emergency-icon {
	font-size: 36px;
	margin-bottom: 15px;
}

.contact-emergency-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}

.contact-emergency-text {
	opacity: 0.9;
	margin-bottom: 20px;
}

/* product breadcum */
.all_banner_sec {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 12px 0px;
}
.all_banner_sec::before {
	background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
}

.breadUl h2 {
	position: relative;
	color: #fff;
	font-weight: 900;
	font-size: 42px;
	line-height: 50px;
	margin-bottom: 24px;
	text-transform: capitalize;
}
.breadUl ul {
	display: flex;
	padding: 0px;
	column-gap: 18px;
	margin: 0px;
	position: relative;
	list-style: none;
}
.breadUl ul li:first-child {
	margin-left: 0px;
}
.breadUl ul li {
	margin-left: 10px;
	color: #fff;
}
.breadUl ul li a {
	color: #fff;
	text-decoration: none;
}
.breadUl ul li a:before {
	content: '\f101 ';
	font-family: FontAwesome;
	display: block;
	position: absolute;
	top: 0px;
	left: 75px;
	border-left: 0;
	border-bottom: 0;
	transition: 0.6s all;
	font-weight: bolder;
}
.breadUl i {
	margin-right: 4px;
}
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute;
		left: 0;
	}
}
.service-detail-image img {
	height: 400px;
	object-fit: cover;
}
section.product_main.p_100 {
	padding: 100px 0px;
}

.prod_cat_box img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.prod_cat_box a {
	text-decoration: none;
}
.prod_title h3 {
	font-size: 21px;
	font-weight: 400;
	color: #000;
	padding: 12px 0px 0px 0px;
}
.product_main_inner .col-md-4 {
	margin-bottom: 24px;
}