/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.5
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--primary-red: #0E9D81;
	/* #DAA520 */
	--secondary-navy: #0E9D81;
	--bg-dark: #201e1f;
	--light-gray: #f8f9fa;
	--dark-text: #343a40;
	--dark-footer: #222;
	--font-main: 'Manrope', sans-serif;
	--font-heading: 'Sora', sans-serif;
	--section-spacing: 6rem;
	--mobile-spacing: 3rem;
	--border-radius: 0.75rem;
}

body {
	font-family: var(--font-main);
	color: var(--dark-text);
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
.section-title,
.counter-box h3,
.navbar-brand-custom {
	font-family: var(--font-heading);
}

.container-fluid {
	width: 92%;
}

.custom-container {
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}
.vet-hero {
	min-height: 100vh;
	background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.1)),
		url("images/hero-bg.jpg") center/cover no-repeat;
	display: flex;
	align-items: center;
}

.vet-hero-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
}

.vet-hero-content h1 span {
	color: #43b59f;
}

.vet-hero-content h3 {
	color: #fff;
	margin-top: 15px;
}

.vet-hero-content p {
	color: #ddd;
	margin: 20px 0;
}

.vet-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #43b59f;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
}

.vet-hero-img {
	max-height: 420px;
}
/* Spacing Utilities */
/* section{
			overflow: hidden;
		} */
.section-padding {
	padding: 60px 0;
}

.section-background-light {
	background-color:var(--light-gray);
}

.section-background-white {
	background-color: white;
}

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

.margin-bottom-5 {
	margin-bottom: 3rem;
}

.margin-top-4 {
	margin-top: 1.5rem;
}

.padding-4 {
	padding: 1.5rem;
}

.padding-top-5 {
	padding-top: 3rem;
}

.padding-bottom-5 {
	padding-bottom: 3rem;
}

/* Navbar Custom Styles */
header {
    background-color: #ffffff;
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 0.125rem 0.25rem;
    padding: 8px 0px;
    border-bottom: 1px solid #00000040;
}

.navbar-brand-custom img {
	height: 50px;
}


.content {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}
/* New vetwin */
.vet-hero {
		position: relative;
		min-height: 85vh;
		display: flex;
		align-items: center;
		background-size: cover;
		background-image: url('images/banner-main.avif');
		background-position: center right;
		background-repeat: no-repeat;
		font-family: var(--font-main);
	}

	.vet-hero-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg,
				rgb(2 2 2 / 85%) 0%,
				rgba(32, 30, 31, 0.65) 40%,
				rgba(32, 30, 31, 0.15) 100%);
		z-index: 1;
	}

	.vet-hero-content {
    position: absolute;
    /* z-index: 2; */
    top: 0;
    left: 5%;
    color: #fff;
    padding: 3rem 0;
}

	.vet-hero-content h1 {
		font-family: var(--font-heading);
		font-size: 2.5rem;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 1rem;
	}

	.vet-hero-content h1 span {
		color: var(--primary-red);
	}

	.vet-hero-content h3 {
		font-size: 1.7rem;
		font-weight: 600;
		color: #e6fff8;
		margin-bottom: 1rem;
	}

	.vet-hero-content p {
		font-size: 1rem;
		line-height: 1.7;
		max-width: 520px;
		color: #f1f1f1;
		margin-bottom: 2rem;
	}

	.vet-btn {
		display: inline-block;
		padding: 0.8rem 2rem;
		border-radius: var(--border-radius);
		background-color: var(--primary-red);
		color: #fff;
		font-weight: 600;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.vet-btn:hover {
		background-color: #0b826b;
		color: #fff;
	}

	@media (max-width: 991px) {
		.vet-hero {
			min-height: 70vh;
			background-position: center;
		}

		.vet-hero-content h1 {
			font-size: 2rem;
		}
.vet-hero-content p {
/*     margin-bottom: 1rem; */
	display:none;
}
		.vet-hero-content h3 {
			font-size: 1.3rem;
		}
/* 		.carousel-item img {
    height: 450px;
    object-fit: cover;
    object-position: right;
} */
	}

	@media(max-width:767px) {
		.vet-hero {
			background-image: url('images/mobile-banner-vetcare.avif');
		}
	}

	@media (max-width: 576px) {
		.vet-hero-overlay {
			background: rgba(32, 30, 31, 0.75);
		}
	}

/* Hero Section Styling */
.hero-section {
	position: relative;
}


.banner-section {
	background-position: center;
	background-size: cover;
	/* padding: 60px 0; */
}

.banner-content {
	max-width: 645px;
	position: relative;
	z-index: 999;
	color: #ddd;
}

.banner-overlay {
	    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(0 0 0 / 89%) 0%, rgb(0 0 0 / 50%) 50%, rgba(237, 221, 83, 0) 100%);
}



.box-form-2 {
	background-color: var(--secondary-navy);
	color: #fff;
	padding: 30px 15px;
	width: 30%;
	position: absolute;
	top: 10px;
	right: 5%;

}


/* Custom Buttons */
.custom-button {
	background: var(--primary-red);
	border: 2px solid var(--primary-red);
	padding: 0.75rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
	color: white;
	text-decoration: none;
	display: inline-block;
}

.custom-button:hover {
	background: #a82733;
	border-color: #a82733;
	transform: translateY(-1px);
	color: white;
}

.custom-button-outline {
	background: transparent;
	border: 2px solid white;
	padding: 0.75rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
	color: white;
	text-decoration: none;
	display: inline-block;
}

.custom-button-outline:hover {
	background: white;
	color: var(--dark-text);
}

/* General Section Titles */
.section-title-wrapper {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	color: #222;
	margin-bottom: 0.5rem;
}

.section-subtitle {
	font-weight: 500;
	font-size: 1.1rem;
	color: #6c757d;
	border-bottom: 3px solid var(--primary-red);
	display: inline-block;
	padding-bottom: 5px;
}

.text-primary-red {
	color: var(--primary-red);
}

.text-secondary-navy {
	color: var(--primary-red);
}

/* About & Feature Cards */
.image-placeholder {
	border-radius: var(--border-radius);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
	width: 100%;
	height: auto;
	display: block;
}

.about-highlight {
	margin-bottom: 1rem;
}

.about-highlight span {
	font-size: 0.9rem;
	color: #6c757d;
	margin-bottom: 20px;
}

.about-box {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 150px;
	border-radius: 50px;
}

.push-about-2 {
	border-radius: 25px;
}

.feature-box {
	background-color: #0e9d811f;
	border-radius: var(--border-radius);
	padding: 1.5rem 1rem;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
	height: 100%;
}

.feature-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 51, 102, 0.15);
}

/* Counter Section */
.counter-section {
	background-color: var(--bg-dark);
	color: white;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.counter-box {
	text-align: center;
	padding: 0 1rem;
}

.counter-box h3 {
	font-size: 3rem;
	margin-bottom: 0;
	color: var(--secondary-navy);
}

.counter-box i {
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1rem;
}

/* Products Carousel */
/* .product-card {
	background-color: white;
	border: 1px solid #a6a6a6;
	border-radius: var(--border-radius);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.3s;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-5px);
	border: 1px solid var(--primary-red);
}

.product-card-image {
	object-fit: cover;
	width: 100%;
	height: 200px;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}

.product-card-content {
	padding: 1rem;
}

.product-card-title {
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card-text {
	color: #555556;
	font-size: 1rem;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
} */

.box-form {
	background-color: var(--bg-dark);
	color: #fff;
	padding: 30px 15px;
	position: sticky;
	top: 0;
}

/* .form-btn {
            width: 100% !important;
            border: none;
            background-color: var(--primary-red);
            padding: 10px 0;
            border-radius: 5px;

        } */
input.wpcf7-form-control.wpcf7-submit.has-spinner {
	width: 100% !important;
	border: none;
	background-color: var(--primary-red);
	padding: 10px 0;
	border-radius: 5px;
	color: #fff;
}

.form-btn a {
	color: #fff;
	text-decoration: none;
}
/* 
.cta-section {
	color: #fff;
}

.cta-btn {
	background-color: var(--secondary-navy);
	color: #fff;
	text-decoration: none;
	padding: 10px 24px;
	border-radius: 5px;
} */

.third-list {
	list-style: none;
	padding: 0;
}

.third-list li {
	margin-top: 5px;
}

.third-list i {
	color: var(--primary-red);

}

/* Process Section */
.process-step {
	background-color: #0e9d811f;
	border-radius: var(--border-radius);
	padding: 1.5rem 1rem;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
	height: 100%;
}

.icon-circle {
	display: inline-flex;
	width: 50px;
	height: 50px;
	background-color: var(--secondary-navy);
	color: white;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.process-icon-lg {
	font-size: 3rem;
	color: var(--secondary-navy);
	margin-bottom: 0.5rem;
	transition: color 0.3s;
}

/* Testimonial Section */
.testimonial-wrapper {
	/* Remove fixed width here, let row/col handle it */
	margin: 0 auto;
}

.testimonial-box {
	background-color: white;
	padding: 3rem;
	border-radius: var(--border-radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.testimonial-quote {
	font-style: italic;
	font-size: 1.2rem;
	line-height: 1.6;
	color: var(--dark-text);
}

.client-info {
	font-weight: 700;
	margin-top: 1rem;
	color: var(--dark-text);
}

.client-info span {
	color: #6c757d;
	font-weight: 400;
}

.testimonial-image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: var(--border-radius);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-card {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	padding: 3rem;
}

.contact-info-block {
	padding-left: 1.5rem;
}

.contact-info-block h4 {
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.info-detail {
	margin-bottom: 1rem;
}

.info-detail p {
	margin: 0;
}

.map-placeholder {
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	height: 200px;
	background-color: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6c757d;
	font-size: 0.9rem;
}

/* Footer */
.footer-logo {
    height: 80px;
    margin-bottom: 25px;
}

.custom-footer {
	background-color: var(--dark-footer);
	color: #ccc;
	padding: 60px 0 30px;
}

.custom-footer a {
	color: #fff;
	text-decoration: none;
}

.custom-footer a:hover {
	color: var(--primary-red);
}

.footer-title {
	color: var(--primary-red);
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

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

.footer-link-list li {
	margin-bottom: 0.5rem;
}

.footer-link {
	text-decoration: none;
	color: #adb5bd;
	transition: color 0.3s;
	font-size: 0.9rem;
}

.footer-link:hover {
	color: var(--primary-red);
}

.footer-social a {
	color: white;
	margin-right: 1rem;
	transition: color 0.3s;
}

.footer-social a:hover {
	color: var(--primary-red);
}

.footer-copy {
	border-top: 1px solid #343a40;
	padding-top: 1rem;
	margin-top: 1rem;
	font-size: 0.85rem;
	color: #adb5bd;
}

/* Owl Carousel Custom Dots Color */
.owl-theme .owl-dots .owl-dot span {
	background: #bbb !important;
	transition: background 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--primary-red) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.section-padding {
		padding-top: var(--mobile-spacing);
		padding-bottom: var(--mobile-spacing);
	}



	.hero-content {
		text-align: center;
		max-width: 100%;
		margin-bottom: 2rem;
	}

	.navbar-list {
		display: none;
	}

	.navbar-toggler {
		display: block;
	}

	.contact-info-block {
		border-left: none;
		padding-left: 0;
		margin-top: 1.5rem;
		border-top: 1px solid #ddd;
		padding-top: 1.5rem;
	}
.content {
    margin-top: 15px;
}
.cta-section .inner-content-cta {
    padding: 40px 15px !important;
}
.cta-section .main-heading {
    font-size: 30px !important;
}
	/* Testimonial specific mobile fix */
	.testimonial-box,
	.testimonial-image {
		padding: 1.5rem;
	}
}


@media (max-width: 991px) {
	.box-form-2 {
		width: 100%;
		position: unset;
		margin: auto;
	}

	.container-fluid {
		width: 95%;
	}

	.counter-box h3 {
		font-size: 2rem;
		font-weight: 600;
		margin-bottom: 0;
	}

	.section-title-wrapper {
		margin-bottom: 1rem;
	}

	#why-us .container-fluid {
		width: 95% !important;
	}

	.footer-logo {
		height: 60px;
	}



}

#sequence a {
	width: 33.3333%;
	float: left;
	text-align: center;
	padding: 5px 0;
	font-size: 15px;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;

}

#sequence a:not(:last-child) {
	border-right: 1px solid #fffdfd;
}

#sequence {
	width: 100%;
	float: left;
	background: var(--secondary-navy);
	position: fixed;
	bottom: 0px;
	z-index: 100;
	padding: 0;
	color: #fff !important;
	margin: 0 !important;
}



section#products {
    background: url(images/product-bg.png), rgb(0 0 0 / 42%);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
}
.product-sub{
	color: #fff !important;
}
.product-title{
	color: #fff !important;
}
.experties-box {
	color: #606060;
	padding: 0 10px 60px;
	border-radius: 16px;
	margin: 80px 0 30px;
	background: rgba(255, 255, 255, .18);
	box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
	backdrop-filter: blur(2.1px);
	-webkit-backdrop-filter: blur(2.1px);
	border: 1px solid rgba(255, 255, 255, .3);
	position: relative
}

.experties-box:hover .experties-sub-box .experties-sub-box-image {
	transform: rotateX(360deg)
}

.experties-sub-box {
	text-align: center;
	padding: 15px 20px 30px;
	margin-top: -50px;
	border-radius: 25px;
	background-color: #fff;
	position: relative;
	transition: .3s
}

.btn-stroke,
.experties-box .read-more {
	background-color: var(--primary-red);
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	color: #fff
}

.experties-box .experties-sub-box::after {
	content: '';
	height: 0;
	width: 0;
	border: 25px solid transparent;
	border-top: 25px solid #fff;
	transform: translateX(-50%);
	position: absolute;
	bottom: -49px;
	left: 50%
}

.experties-box .experties-sub-box-image {
	display: inline-block;
	font-size: 90px;
	margin-bottom: 10px;
	transition: .3s
}

.experties-sub-box-image img {
	border-radius: 20px
}

p.sub-box-text {
	font-size: 20px;
	font-weight: 700;
	color: var(--ancient-color)
}

.experties-box .read-more {
	display: block;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	padding: 12px 0;
	border-radius: 15px;
	transition: .3s;
	position: absolute;
	bottom: -22px
}

.btn-base {
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: .5rem;
	cursor: pointer;
	text-align: center;
	transition: .3s cubic-bezier(.4, 0, .2, 1);
	border: none;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 10
}

@keyframes continuous-draw-h {

	0%,
	100%,
	75% {
		width: 0%
	}

	25%,
	50% {
		width: 100%
	}
}

@keyframes continuous-draw-v {

	0%,
	100%,
	75% {
		height: 0%
	}

	25%,
	50% {
		height: 100%
	}
}

.btn-stroke {
	padding: 12px 20px;
	position: absolute;
	bottom: -25px
}

.btn-stroke:hover {
	background-color: rgba(0, 160, 227, .2);
	color: #fff
}

.btn-stroke:active {
	transform: scale(.98)
}

.btn-stroke::after,
.btn-stroke::before {
	content: '';
	position: absolute;
	background-color: #fff;
	height: 2px;
	animation: 1.5s linear infinite continuous-draw-h;
	z-index: -1
}

.btn-stroke::before {
	top: 0;
	left: 0;
	animation-delay: 0s
}

.btn-stroke::after {
	bottom: 0;
	right: 0;
	animation-delay: .75s
}

.btn-stroke span {
	position: absolute;
	background-color: #fff;
	width: 2px;
	height: 0;
	animation: 1.5s linear infinite continuous-draw-v;
	z-index: -1
}

.btn-stroke .left-line {
	top: 0;
	left: 0;
	animation-delay: 375ms
}

.btn-stroke .right-line {
	bottom: 0;
	right: 0;
	animation-delay: 1.125s
}

.btn-stroke:hover::after,
.btn-stroke:hover::before {
	width: 100%;
	animation: none
}

.btn-stroke:hover .left-line,
.btn-stroke:hover .right-line {
	height: 100%;
	animation: none
}



/* cta 2 section */
.cta-section .inner-content-cta {
	background: #151a2e;
	padding: 60px;
	color: #fff;
	width: 100%;
	height: 100%;
}
.cta-section .intro-main {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}
.cta-section .main-heading {
    color: #ffff;
    font-size: 42px;
    margin: 15px 0;
}
section.cta-section .cta-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cta-section-inner{
    background: #151a2e;
	padding: 50px 30px;
	color: #fff;
    border-radius: 15px;
}
.cta-section-inner .main-heading {
    color: #ffff;
    font-size: 45px;
    margin-bottom: 25px;
}
.cta-section-inner h4{
    color: #fff;
}
.theme_btn {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	transition: all 0.3s ease !important;
	cursor: pointer;
	background-color: #fff;
	color: var(--secondary-navy);
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.theme_btn .btn-icon-circle-discover {
	background-color: var(--secondary-navy);
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.theme_btn:hover {
	background-color: var(--secondary-navy);
    color: #fff;
}

.theme_btn:hover .btn-icon-circle-discover {
	background-color: #fff;
	color: var(--secondary-navy);
	transform: translateX(3px);
}

/* Page Breadcrumb  */
.page-breadcrumb {
    background: linear-gradient(135deg, #00B0A3 0%, #333333 100%);
    padding: 50px 0 40px 0;
    color: #ffffff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: relative;
    overflow: hidden;
}

.page-breadcrumb::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-breadcrumb .container {
    position: relative;
    z-index: 1;
}

.page-breadcrumb span.breadcrumb_new a {
    color: #ffffff;
    background: #00B0A3;
    padding: 5px;
    border-radius: 7px;
    text-decoration: none;
}

.page-breadcrumb span.breadcrumb_new {
    color: #ffffff;
}

.page-breadcrumb .extraa {
    margin: 54px 0;
}

/* Thank You page content */

.thank-you {
    padding: 30px 0;
}

.thank-you-box {
    background: linear-gradient(135deg, #00B0A3 0%, #333333 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 48px 36px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.thank-you-icon i {
    font-size: 48px;
    color: #ffffff;
}

.thank-you-title {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 24px;
}

.thank-you-btn {
    font-weight: 600;
    color: #ffffff;
    border: 1px solid #00B0A3;
    background: #00B0A3;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.thank-you-btn:hover {
    background: #ffffff;
    color: #000000;
}
